Struct brotli::enc::backward_references::AdvHasher
source · 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: Struct1
§specialization: Specialization
§num: <Alloc as Allocator<u16>>::AllocatedMemory
§buckets: <Alloc as Allocator<u32>>::AllocatedMemory
§h9_opts: H9Opts
Trait Implementations§
source§impl<Specialization: AdvHashSpecialization + Clone, Alloc: Allocator<u16> + Allocator<u32>> AnyHasher for AdvHasher<Specialization, Alloc>
impl<Specialization: AdvHashSpecialization + Clone, Alloc: Allocator<u16> + Allocator<u32>> AnyHasher for AdvHasher<Specialization, Alloc>
fn Opts(&self) -> H9Opts
fn PrepareDistanceCache(&self, distance_cache: &mut [i32])
fn StitchToPreviousBlock( &mut self, num_bytes: usize, position: usize, ringbuffer: &[u8], ringbuffer_mask: usize, )
fn Prepare( &mut self, one_shot: bool, input_size: usize, data: &[u8], ) -> HowPrepared
fn GetHasherCommon(&mut self) -> &mut Struct1
fn HashTypeLength(&self) -> usize
fn StoreLookahead(&self) -> usize
fn HashBytes(&self, data: &[u8]) -> usize
fn StoreEvenVec4(&mut self, data: &[u8], mask: usize, ix: usize)
fn Store4Vec4(&mut self, data: &[u8], mask: usize, ix: usize)
fn Store(&mut self, data: &[u8], mask: usize, ix: usize)
fn StoreRange( &mut self, data: &[u8], mask: usize, ix_start: usize, ix_end: usize, )
fn BulkStoreRange( &mut self, data: &[u8], mask: usize, ix_start: usize, ix_end: usize, )
fn FindLongestMatch( &mut self, dictionary: Option<&BrotliDictionary>, dictionary_hash: &[u16], data: &[u8], ring_buffer_mask: usize, distance_cache: &[i32], cur_ix: usize, max_length: usize, max_backward: usize, gap: usize, max_distance: usize, out: &mut HasherSearchResult, ) -> bool
source§impl<Alloc: Allocator<u16> + Allocator<u32>, Special: AdvHashSpecialization + Sized + Clone> CloneWithAlloc<Alloc> for AdvHasher<Special, Alloc>
impl<Alloc: Allocator<u16> + Allocator<u32>, Special: AdvHashSpecialization + Sized + Clone> CloneWithAlloc<Alloc> for AdvHasher<Special, Alloc>
fn clone_with_alloc(&self, m: &mut Alloc) -> Self
Auto Trait Implementations§
impl<Specialization, Alloc> Freeze for AdvHasher<Specialization, Alloc>where
Specialization: Freeze,
<Alloc as Allocator<u16>>::AllocatedMemory: Freeze,
<Alloc as Allocator<u32>>::AllocatedMemory: Freeze,
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§
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