pub struct AdvHasher<Specialization: AdvHashSpecialization + Sized, Alloc: Allocator<u16> + Allocator<u32>> {
    pub GetHasherCommon: Struct1,
    pub bucket_size_: u64,
    pub block_size_: u64,
    pub specialization: Specialization,
    pub hash_shift_: i32,
    pub block_mask_: u32,
    pub num: <Alloc as Allocator<u16>>::AllocatedMemory,
    pub buckets: <Alloc as Allocator<u32>>::AllocatedMemory,
    pub h9_opts: H9Opts,
}

Fields

GetHasherCommon: Struct1bucket_size_: u64block_size_: u64specialization: Specializationhash_shift_: i32block_mask_: u32num: <Alloc as Allocator<u16>>::AllocatedMemorybuckets: <Alloc as Allocator<u32>>::AllocatedMemoryh9_opts: H9Opts

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.