pub struct LzxpressHuffmanContext {
pub uncompressed_data_size: usize,
/* private fields */
}Expand description
Context for decompressing LZXPRESS Huffman compressed data.
Fields§
§uncompressed_data_size: usizeUncompressed data size.
Implementations§
Source§impl LzxpressHuffmanContext
impl LzxpressHuffmanContext
Sourcepub fn decompress(
&mut self,
compressed_data: &[u8],
uncompressed_data: &mut [u8],
) -> Result<(), ErrorTrace>
pub fn decompress( &mut self, compressed_data: &[u8], uncompressed_data: &mut [u8], ) -> Result<(), ErrorTrace>
Decompress data.
Auto Trait Implementations§
impl Freeze for LzxpressHuffmanContext
impl RefUnwindSafe for LzxpressHuffmanContext
impl Send for LzxpressHuffmanContext
impl Sync for LzxpressHuffmanContext
impl Unpin for LzxpressHuffmanContext
impl UnwindSafe for LzxpressHuffmanContext
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