Skip to main content

RangeDecoder

Struct RangeDecoder 

Source
pub struct RangeDecoder<R: Read> { /* private fields */ }
Expand description

Range decoder for LZMA decompression.

Implementations§

Source§

impl<R: Read> RangeDecoder<R>

Source

pub fn new(reader: R) -> Result<Self>

Create a new range decoder.

Source

pub fn new_lzma2(reader: R) -> Result<Self>

Create a range decoder for raw LZMA2 stream (no header byte).

Source

pub fn decode_bit(&mut self, prob: &mut u16) -> Result<u32>

Decode a single bit with the given probability.

Source

pub fn decode_direct_bit(&mut self) -> Result<u32>

Decode a bit with fixed 50% probability.

Source

pub fn decode_direct_bits(&mut self, count: u32) -> Result<u32>

Decode multiple bits with fixed probability.

Source

pub fn decode_bit_tree_reverse( &mut self, probs: &mut [u16], num_bits: u32, ) -> Result<u32>

Decode a bit tree (reverse order).

Source

pub fn decode_bit_tree( &mut self, probs: &mut [u16], num_bits: u32, ) -> Result<u32>

Decode a bit tree (normal order).

Source

pub fn is_corrupted(&self) -> bool

Check if the stream is corrupted.

Source

pub fn is_finished_ok(&self) -> bool

Check if decoding finished correctly.

Trait Implementations§

Source§

impl<R: Debug + Read> Debug for RangeDecoder<R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<R> Freeze for RangeDecoder<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for RangeDecoder<R>
where R: RefUnwindSafe,

§

impl<R> Send for RangeDecoder<R>
where R: Send,

§

impl<R> Sync for RangeDecoder<R>
where R: Sync,

§

impl<R> Unpin for RangeDecoder<R>
where R: Unpin,

§

impl<R> UnsafeUnpin for RangeDecoder<R>
where R: UnsafeUnpin,

§

impl<R> UnwindSafe for RangeDecoder<R>
where R: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.