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