pub struct Lz5Decoder<R> { /* private fields */ }Available on crate feature
lz only.Expand description
A decoder for -lz5- compression method.
Implementations§
Source§impl<R: Read> Lz5Decoder<R>
impl<R: Read> Lz5Decoder<R>
Sourcepub fn new(reader: R) -> Lz5Decoder<R>
pub fn new(reader: R) -> Lz5Decoder<R>
Create a new decoder instance from the given data read stream
Trait Implementations§
Source§impl<R: Debug> Debug for Lz5Decoder<R>
impl<R: Debug> Debug for Lz5Decoder<R>
Source§impl<R: Read> Decoder<R> for Lz5Decoder<R>
impl<R: Read> Decoder<R> for Lz5Decoder<R>
Source§fn into_inner(self) -> R
fn into_inner(self) -> R
Consume the decoder and return the underlying reader.
Auto Trait Implementations§
impl<R> Freeze for Lz5Decoder<R>where
R: Freeze,
impl<R> RefUnwindSafe for Lz5Decoder<R>where
R: RefUnwindSafe,
impl<R> Send for Lz5Decoder<R>where
R: Send,
impl<R> Sync for Lz5Decoder<R>where
R: Sync,
impl<R> Unpin for Lz5Decoder<R>where
R: Unpin,
impl<R> UnsafeUnpin for Lz5Decoder<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for Lz5Decoder<R>where
R: UnwindSafe,
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