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