#[repr(C)]
pub struct lzma_stream { pub next_in: *const u8, pub avail_in: size_t, pub total_in: u64, pub next_out: *mut u8, pub avail_out: size_t, pub total_out: u64, pub allocator: *const lzma_allocator, /* private fields */ }

Fields

next_in: *const u8avail_in: size_ttotal_in: u64next_out: *mut u8avail_out: size_ttotal_out: u64allocator: *const lzma_allocator

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.