#[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 Freeze for lzma_stream
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§
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