[][src]Struct brotli::enc::interface::PredictionModeContextMap

pub struct PredictionModeContextMap<SliceType: SliceWrapper<u8>> {
    pub literal_context_map: SliceType,
    pub predmode_speed_and_distance_context_map: SliceType,
}

Fields

literal_context_map: SliceTypepredmode_speed_and_distance_context_map: SliceType

Methods

impl<SliceType: SliceWrapper<u8> + SliceWrapperMut<u8>> PredictionModeContextMap<SliceType>
[src]

Important traits for &'a mut [u8]
pub fn distance_context_map_mut(&mut self) -> &mut [u8]
[src]

pub fn set_stride_context_speed(&mut self, speed_max: [(u16, u16); 2])
[src]

pub fn set_context_map_speed(&mut self, speed_max: [(u16, u16); 2])
[src]

pub fn set_mixing_math(&mut self, math_enum: u8)
[src]

pub fn set_adv_context_map(&mut self, is_adv: u8)
[src]

pub fn set_mixing_values(&mut self, mixing_mask: &[u8; 8192])
[src]

Important traits for &'a mut [u8]
pub fn get_mixing_values_mut(&mut self) -> &mut [u8]
[src]

pub fn set_combined_stride_context_speed(&mut self, speed_max: [(u16, u16); 2])
[src]

pub fn set_literal_prediction_mode(&mut self, val: LiteralPredictionModeNibble)
[src]

impl<SliceType: SliceWrapper<u8>> PredictionModeContextMap<SliceType>
[src]

pub fn from_mut<Other: SliceWrapper<u8>>(
    other: PredictionModeContextMap<Other>
) -> PredictionModeContextMap<SliceType> where
    SliceType: From<Other>, 
[src]

Important traits for &'a mut [u8]
pub fn get_mixing_values(&self) -> &[u8]
[src]

pub fn get_mixing_math(&self) -> u8
[src]

pub fn get_is_adv_context_map(&self) -> u8
[src]

pub fn has_context_speeds(&self) -> bool
[src]

pub fn size_of_combined_array(distance_context_map_size: usize) -> usize
[src]

pub fn context_speeds_standard_len(&self) -> usize
[src]

Important traits for &'a mut [u8]
pub fn context_speeds_f8(&self) -> &[u8]
[src]

Important traits for &'a mut [u8]
pub fn distance_context_map(&self) -> &[u8]
[src]

pub fn f8_to_u16(data: u8) -> u16
[src]

pub fn u16_to_f8(data: u16) -> u8
[src]

pub fn stride_context_speed_offset() -> usize
[src]

pub fn stride_context_speed_max_offset() -> usize
[src]

pub fn context_map_speed_offset() -> usize
[src]

pub fn context_map_speed_max_offset() -> usize
[src]

pub fn combined_stride_context_speed_offset() -> usize
[src]

pub fn combined_stride_context_speed_max_offset() -> usize
[src]

pub fn literal_prediction_mode(&self) -> LiteralPredictionModeNibble
[src]

pub fn stride_context_speed(&self) -> [(u16, u16); 2]
[src]

pub fn context_map_speed(&self) -> [(u16, u16); 2]
[src]

pub fn combined_stride_context_speed(&self) -> [(u16, u16); 2]
[src]

pub fn stride_context_speed_f8(&self) -> [(u8, u8); 2]
[src]

pub fn combined_stride_context_speed_f8(&self) -> [(u8, u8); 2]
[src]

pub fn context_map_speed_f8(&self) -> [(u8, u8); 2]
[src]

Trait Implementations

impl<SliceType: SliceWrapper<u8> + Clone + Copy> Copy for PredictionModeContextMap<SliceType>
[src]

impl<SliceType: SliceWrapper<u8> + Clone> Clone for PredictionModeContextMap<SliceType>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<SliceType: Debug + SliceWrapper<u8>> Debug for PredictionModeContextMap<SliceType>
[src]

Auto Trait Implementations

impl<SliceType> Send for PredictionModeContextMap<SliceType> where
    SliceType: Send

impl<SliceType> Sync for PredictionModeContextMap<SliceType> where
    SliceType: Sync

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T