pub(crate) struct LZOxide {
    pub codes: [u8; 65536],
    pub code_position: usize,
    pub flag_position: usize,
    pub total_bytes: u32,
    pub num_flags_left: u32,
}Fields§
§codes: [u8; 65536]§code_position: usize§flag_position: usize§total_bytes: u32§num_flags_left: u32Implementations§
Auto Trait Implementations§
impl Freeze for LZOxide
impl RefUnwindSafe for LZOxide
impl Send for LZOxide
impl Sync for LZOxide
impl Unpin for LZOxide
impl UnwindSafe for LZOxide
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