pub struct LzmaEncoder { /* private fields */ }
Available on crate feature
lzma
only.Expand description
Lzma encoding stream
Implementations§
Trait Implementations§
Source§impl Debug for LzmaEncoder
impl Debug for LzmaEncoder
Source§impl Encode for LzmaEncoder
impl Encode for LzmaEncoder
fn encode( &mut self, input: &mut PartialBuffer<impl AsRef<[u8]>>, output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>, ) -> Result<()>
Source§impl From<Xz2Encoder> for LzmaEncoder
impl From<Xz2Encoder> for LzmaEncoder
Source§fn from(inner: Xz2Encoder) -> Self
fn from(inner: Xz2Encoder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LzmaEncoder
impl RefUnwindSafe for LzmaEncoder
impl Send for LzmaEncoder
impl Sync for LzmaEncoder
impl Unpin for LzmaEncoder
impl UnwindSafe for LzmaEncoder
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