[][src]Struct bitcoin::util::bip158::GCSFilterReader

pub struct GCSFilterReader { /* fields omitted */ }

Golomb-Rice encoded filter reader

Methods

impl GCSFilterReader[src]

pub fn new(k0: u64, k1: u64, m: u64, p: u8) -> GCSFilterReader[src]

Create a new filter reader with specific seed to siphash

pub fn match_any(
    &self,
    reader: &mut dyn Read,
    query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
[src]

match any query pattern

pub fn match_all(
    &self,
    reader: &mut dyn Read,
    query: &mut dyn Iterator<Item = &[u8]>
) -> Result<bool, Error>
[src]

match all query pattern

Auto Trait Implementations

impl Unpin for GCSFilterReader

impl Sync for GCSFilterReader

impl Send for GCSFilterReader

impl UnwindSafe for GCSFilterReader

impl RefUnwindSafe for GCSFilterReader

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]