[][src]Struct tinysearch_cuckoofilter::ExportedCuckooFilter

pub struct ExportedCuckooFilter {
    pub values: Vec<u8>,
    pub length: usize,
}

A minimal representation of the CuckooFilter which can be transferred or stored, then recovered at a later stage.

Fields

values: Vec<u8>length: usize

Trait Implementations

impl<H> From<ExportedCuckooFilter> for CuckooFilter<H>[src]

fn from(exported: ExportedCuckooFilter) -> CuckooFilter<H>[src]

Converts a simplified representation of a filter used for export to a fully functioning version.

Contents

  • values - A serialized version of the CuckooFilter's memory, where the fingerprints in each bucket are chained one after another, then in turn all buckets are chained together.
  • length - The number of valid fingerprints inside the CuckooFilter. This value is used as a time saving method, otherwise all fingerprints would need to be checked for equivalence against the null pattern.

impl<'a, H> From<&'a CuckooFilter<H>> for ExportedCuckooFilter where
    H: Hasher + Default
[src]

fn from(cuckoo: &'a CuckooFilter<H>) -> ExportedCuckooFilter[src]

Converts a CuckooFilter into a simplified version which can be serialized and stored for later use.

impl Debug for ExportedCuckooFilter[src]

impl Serialize for ExportedCuckooFilter[src]

impl<'de> Deserialize<'de> for ExportedCuckooFilter[src]

Auto Trait Implementations

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]