[][src]Struct apng::Encoder

pub struct Encoder<'a, W: Write> { /* fields omitted */ }

Methods

impl<'a, W: Write> Encoder<'a, W>[src]

pub fn new(writer: &'a mut W, config: Config) -> Result<Self, APNGError>[src]

pub fn encode_all(
    &mut self,
    images: Vec<PNGImage>,
    frame: Option<&Frame>
) -> Result<(), APNGError>
[src]

Trait Implementations

impl<'a, W: PartialEq + Write> PartialEq<Encoder<'a, W>> for Encoder<'a, W>[src]

impl<'a, W: Debug + Write> Debug for Encoder<'a, W>[src]

impl<'a, W: Write> StructuralPartialEq for Encoder<'a, W>[src]

Auto Trait Implementations

impl<'a, W> Send for Encoder<'a, W> where
    W: Send

impl<'a, W> Sync for Encoder<'a, W> where
    W: Sync

impl<'a, W> Unpin for Encoder<'a, W>

impl<'a, W> !UnwindSafe for Encoder<'a, W>

impl<'a, W> RefUnwindSafe for Encoder<'a, W> where
    W: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> SetParameter for T