pub struct MassMapInfo {
pub file_length: u64,
pub entry_count: u64,
pub bucket_count: usize,
pub empty_buckets: usize,
pub meta_offset: u64,
pub meta_length: u64,
pub hash_seed: u64,
}Expand description
Summary returned by MassMapBuilder::build.
Fields§
§file_length: u64Final size of the generated massmap file in bytes.
entry_count: u64Number of entries serialized.
bucket_count: usizeNumber of buckets allocated.
empty_buckets: usizeNumber of buckets that ended up empty.
meta_offset: u64Offset of the serialized MassMapMeta structure.
meta_length: u64Length in bytes of the serialized MassMapMeta structure.
hash_seed: u64Hash seed used by the builder.
Trait Implementations§
Source§impl Debug for MassMapInfo
impl Debug for MassMapInfo
Source§impl Default for MassMapInfo
impl Default for MassMapInfo
Source§fn default() -> MassMapInfo
fn default() -> MassMapInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MassMapInfo
impl RefUnwindSafe for MassMapInfo
impl Send for MassMapInfo
impl Sync for MassMapInfo
impl Unpin for MassMapInfo
impl UnwindSafe for MassMapInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more