pub struct RangeDecoder<R: Read> { /* private fields */ }Expand description
Range decoder for LZMA decompression.
Implementations§
Source§impl<R: Read> RangeDecoder<R>
impl<R: Read> RangeDecoder<R>
Sourcepub fn new_lzma2(reader: R) -> Result<Self>
pub fn new_lzma2(reader: R) -> Result<Self>
Create a range decoder for raw LZMA2 stream (no header byte).
Sourcepub fn decode_bit(&mut self, prob: &mut u16) -> Result<u32>
pub fn decode_bit(&mut self, prob: &mut u16) -> Result<u32>
Decode a single bit with the given probability.
Sourcepub fn decode_direct_bit(&mut self) -> Result<u32>
pub fn decode_direct_bit(&mut self) -> Result<u32>
Decode a bit with fixed 50% probability.
Sourcepub fn decode_direct_bits(&mut self, count: u32) -> Result<u32>
pub fn decode_direct_bits(&mut self, count: u32) -> Result<u32>
Decode multiple bits with fixed probability.
Sourcepub fn decode_bit_tree_reverse(
&mut self,
probs: &mut [u16],
num_bits: u32,
) -> Result<u32>
pub fn decode_bit_tree_reverse( &mut self, probs: &mut [u16], num_bits: u32, ) -> Result<u32>
Decode a bit tree (reverse order).
Sourcepub fn decode_bit_tree(
&mut self,
probs: &mut [u16],
num_bits: u32,
) -> Result<u32>
pub fn decode_bit_tree( &mut self, probs: &mut [u16], num_bits: u32, ) -> Result<u32>
Decode a bit tree (normal order).
Sourcepub fn is_corrupted(&self) -> bool
pub fn is_corrupted(&self) -> bool
Check if the stream is corrupted.
Sourcepub fn is_finished_ok(&self) -> bool
pub fn is_finished_ok(&self) -> bool
Check if decoding finished correctly.
Trait Implementations§
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> 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