Struct cuckoofilter::ExportedCuckooFilter [−][src]
A minimal representation of the CuckooFilter which can be transfered or stored, then recovered at a later stage.
Fields
values: Vec<u8>
length: usize
Trait Implementations
impl<H> From<&'_ CuckooFilter<H>> for ExportedCuckooFilter where
H: Hasher + Default,
[src]
impl<H> From<&'_ CuckooFilter<H>> for ExportedCuckooFilter where
H: Hasher + Default,
[src]fn from(cuckoo: &CuckooFilter<H>) -> Self
[src]
Converts a CuckooFilter
into a simplified version which can be serialized and stored
for later use.
impl<H> From<ExportedCuckooFilter> for CuckooFilter<H>
[src]
impl<H> From<ExportedCuckooFilter> for CuckooFilter<H>
[src]fn from(exported: ExportedCuckooFilter) -> Self
[src]
Converts a simplified representation of a filter used for export to a fully functioning version.
Contents
values
- A serialized version of theCuckooFilter
’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 theCuckooFilter
. This value is used as a time saving method, otherwise all fingerprints would need to be checked for equivalence against the null pattern.