pub struct Lznt1Context {
pub uncompressed_data_size: usize,
/* private fields */
}Expand description
Context for decompressing LZNT1 compressed data.
Fields§
§uncompressed_data_size: usizeUncompressed data size.
Implementations§
Source§impl Lznt1Context
impl Lznt1Context
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 Lznt1Context
impl RefUnwindSafe for Lznt1Context
impl Send for Lznt1Context
impl Sync for Lznt1Context
impl Unpin for Lznt1Context
impl UnwindSafe for Lznt1Context
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