[−][src]Struct bitcoin::util::bip158::BlockFilter
a computed or read block filter
Fields
content: Vec<u8>
Golomb encoded filter
Methods
impl BlockFilter
[src]
pub fn filter_header(
&self,
previous_filter_header: &FilterHeader
) -> FilterHeader
[src]
&self,
previous_filter_header: &FilterHeader
) -> FilterHeader
compute this filter's id in a chain of filters
pub fn new(content: &[u8]) -> BlockFilter
[src]
create a new filter from pre-computed data
pub fn new_script_filter<M>(
block: &Block,
script_for_coin: M
) -> Result<BlockFilter, Error> where
M: Fn(&OutPoint) -> Result<Script, Error>,
[src]
block: &Block,
script_for_coin: M
) -> Result<BlockFilter, Error> where
M: Fn(&OutPoint) -> Result<Script, Error>,
Compute a SCRIPT_FILTER that contains spent and output scripts
pub fn match_any(
&self,
block_hash: &BlockHash,
query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
[src]
&self,
block_hash: &BlockHash,
query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
match any query pattern
pub fn match_all(
&self,
block_hash: &BlockHash,
query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
[src]
&self,
block_hash: &BlockHash,
query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
match all query pattern
Trait Implementations
impl Clone for BlockFilter
[src]
fn clone(&self) -> BlockFilter
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<BlockFilter> for BlockFilter
[src]
fn eq(&self, other: &BlockFilter) -> bool
[src]
fn ne(&self, other: &BlockFilter) -> bool
[src]
impl Eq for BlockFilter
[src]
impl Debug for BlockFilter
[src]
Auto Trait Implementations
impl Unpin for BlockFilter
impl Sync for BlockFilter
impl Send for BlockFilter
impl UnwindSafe for BlockFilter
impl RefUnwindSafe for BlockFilter
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,