Struct brotli::enc::find_stride::EntropyTally
source · pub struct EntropyTally<AllocU32: Allocator<u32>> { /* private fields */ }
Implementations§
source§impl<AllocU32: Allocator<u32>> EntropyTally<AllocU32>
impl<AllocU32: Allocator<u32>> EntropyTally<AllocU32>
pub fn new( m32: &mut AllocU32, max_stride_arg: Option<u8>, ) -> EntropyTally<AllocU32>
pub fn disabled_placeholder(m32: &mut AllocU32) -> EntropyTally<AllocU32>
pub fn peek(&mut self) -> &mut EntropyBucketPopulation<AllocU32>
pub fn get_previous_bytes( &self, input0: &[u8], input1: &[u8], bytes_processed: usize, ) -> [u8; 8]
pub fn pick_best_stride<InputReference: SliceWrapper<u8>>( &mut self, commands: &[Command<InputReference>], input0: &[u8], input1: &[u8], bytes_processed: &mut usize, entropy_pyramid: &EntropyPyramid<AllocU32>, stride_detection_quality: u8, ) -> u8
pub fn free(&mut self, m32: &mut AllocU32)
pub fn is_free(&mut self) -> bool
Auto Trait Implementations§
impl<AllocU32> Freeze for EntropyTally<AllocU32>
impl<AllocU32> RefUnwindSafe for EntropyTally<AllocU32>
impl<AllocU32> Send for EntropyTally<AllocU32>
impl<AllocU32> Sync for EntropyTally<AllocU32>
impl<AllocU32> Unpin for EntropyTally<AllocU32>
impl<AllocU32> UnwindSafe for EntropyTally<AllocU32>
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