[][src]Struct brotli::enc::backward_references::AdvHasher

pub struct AdvHasher<Specialization: AdvHashSpecialization + Sized + Clone, Alloc: Allocator<u16> + Allocator<u32>> {
    pub GetHasherCommon: Struct1,
    pub specialization: Specialization,
    pub num: <Alloc as Allocator<u16>>::AllocatedMemory,
    pub buckets: <Alloc as Allocator<u32>>::AllocatedMemory,
    pub h9_opts: H9Opts,
}

Fields

GetHasherCommon: Struct1specialization: Specializationnum: <Alloc as Allocator<u16>>::AllocatedMemorybuckets: <Alloc as Allocator<u32>>::AllocatedMemoryh9_opts: H9Opts

Trait Implementations

impl<Specialization: AdvHashSpecialization + Clone, Alloc: Allocator<u16> + Allocator<u32>> AnyHasher for AdvHasher<Specialization, Alloc>[src]

impl<Alloc: Allocator<u16> + Allocator<u32>, Special: AdvHashSpecialization + Sized + Clone> CloneWithAlloc<Alloc> for AdvHasher<Special, Alloc>[src]

impl<Specialization: AdvHashSpecialization + Sized + Clone, Alloc: Allocator<u16> + Allocator<u32>> PartialEq<AdvHasher<Specialization, Alloc>> for AdvHasher<Specialization, Alloc>[src]

Auto Trait Implementations

impl<Specialization, Alloc> RefUnwindSafe for AdvHasher<Specialization, Alloc> where
    Specialization: RefUnwindSafe,
    <Alloc as Allocator<u16>>::AllocatedMemory: RefUnwindSafe,
    <Alloc as Allocator<u32>>::AllocatedMemory: RefUnwindSafe

impl<Specialization, Alloc> Send for AdvHasher<Specialization, Alloc> where
    Specialization: Send,
    <Alloc as Allocator<u16>>::AllocatedMemory: Send,
    <Alloc as Allocator<u32>>::AllocatedMemory: Send

impl<Specialization, Alloc> Sync for AdvHasher<Specialization, Alloc> where
    Specialization: Sync,
    <Alloc as Allocator<u16>>::AllocatedMemory: Sync,
    <Alloc as Allocator<u32>>::AllocatedMemory: Sync

impl<Specialization, Alloc> Unpin for AdvHasher<Specialization, Alloc> where
    Specialization: Unpin,
    <Alloc as Allocator<u16>>::AllocatedMemory: Unpin,
    <Alloc as Allocator<u32>>::AllocatedMemory: Unpin

impl<Specialization, Alloc> UnwindSafe for AdvHasher<Specialization, Alloc> where
    Specialization: UnwindSafe,
    <Alloc as Allocator<u16>>::AllocatedMemory: UnwindSafe,
    <Alloc as Allocator<u32>>::AllocatedMemory: UnwindSafe

Blanket Implementations

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

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

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

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.