Struct lzma_sys::lzma_stream
source · [−]#[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 u8
avail_in: size_t
total_in: u64
next_out: *mut u8
avail_out: size_t
total_out: u64
allocator: *const lzma_allocator
Auto Trait Implementations
impl RefUnwindSafe for lzma_stream
impl !Send for lzma_stream
impl !Sync for lzma_stream
impl Unpin for lzma_stream
impl UnwindSafe for lzma_stream
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more