[][src]Struct iffc::Encoder

pub struct Encoder(_);

A structure which wraps a writer and writes IFF chunks to it, by using << (shift-left) with an RHS of type IFFChunk, also that operand can be chained.

Implementations

impl Encoder[src]

pub fn new(w: Box<dyn Write>) -> Self[src]

Trait Implementations

impl Shl<Chunk> for Encoder[src]

type Output = Option<Self>

The resulting type after applying the << operator.

Auto Trait Implementations

impl !RefUnwindSafe for Encoder

impl !Send for Encoder

impl !Sync for Encoder

impl Unpin for Encoder

impl !UnwindSafe for Encoder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.