Skip to main content

LhaV2Decoder

Struct LhaV2Decoder 

Source
pub struct LhaV2Decoder<C: LhaDecoderConfig, R> { /* private fields */ }
Expand description

A generic decoder for LHArc version 2 compression methods.

Implementations§

Source§

impl<C: LhaDecoderConfig, R: Read> LhaV2Decoder<C, R>

Source

pub fn new(rd: R) -> LhaV2Decoder<C, R>

Create a new decoder instance from the given data read stream

Trait Implementations§

Source§

impl<C: Debug + LhaDecoderConfig, R: Debug> Debug for LhaV2Decoder<C, R>
where C::RingBuffer: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<C: LhaDecoderConfig, R: Read> Decoder<R> for LhaV2Decoder<C, R>
where R::Error: Error,

Source§

type Error = <R as Read>::Error

The error type required by the underlying reader.
Source§

fn into_inner(self) -> R

Consume the decoder and return the underlying reader.
Source§

fn get_ref(&self) -> &R

Get a reference to the underlying reader. Read more
Source§

fn get_mut(&mut self) -> &mut R

Get a mutable reference to the underlying reader. Read more
Source§

fn fill_buffer(&mut self, buf: &mut [u8]) -> LhaResult<(), R>

Fill the whole buffer slice with decoded data. Read more

Auto Trait Implementations§

§

impl<C, R> Freeze for LhaV2Decoder<C, R>
where R: Freeze,

§

impl<C, R> RefUnwindSafe for LhaV2Decoder<C, R>

§

impl<C, R> Send for LhaV2Decoder<C, R>
where R: Send, <C as LhaDecoderConfig>::RingBuffer: Send,

§

impl<C, R> Sync for LhaV2Decoder<C, R>
where R: Sync, <C as LhaDecoderConfig>::RingBuffer: Sync,

§

impl<C, R> Unpin for LhaV2Decoder<C, R>
where R: Unpin,

§

impl<C, R> UnsafeUnpin for LhaV2Decoder<C, R>
where R: UnsafeUnpin,

§

impl<C, R> UnwindSafe for LhaV2Decoder<C, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.