#[repr(C)]pub struct LZ_Decoder {
pub partial_in_size: c_ulonglong,
pub partial_out_size: c_ulonglong,
pub rdec: *mut RangeDecoder,
pub lz_decoder: *mut LZ_decoder,
pub lz_errno: LzErrno,
pub member_header: LzipHeader,
pub fatal: bool,
pub first_header: bool,
pub seeking: bool,
}Fields§
§partial_in_size: c_ulonglong§partial_out_size: c_ulonglong§rdec: *mut RangeDecoder§lz_decoder: *mut LZ_decoder§lz_errno: LzErrno§member_header: LzipHeader§fatal: bool§first_header: bool§seeking: boolTrait Implementations§
Source§impl Clone for LZ_Decoder
impl Clone for LZ_Decoder
Source§fn clone(&self) -> LZ_Decoder
fn clone(&self) -> LZ_Decoder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LZ_Decoder
impl Debug for LZ_Decoder
impl Copy for LZ_Decoder
Auto Trait Implementations§
impl Freeze for LZ_Decoder
impl RefUnwindSafe for LZ_Decoder
impl !Send for LZ_Decoder
impl !Sync for LZ_Decoder
impl Unpin for LZ_Decoder
impl UnwindSafe for LZ_Decoder
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