[][src]Struct png_pong::Encoder

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

PNG file encoder

Can be converted into one of two encoders:

Implementations

impl<W: Write> Encoder<W>[src]

pub fn new(writer: W) -> Self[src]

Create a new PNG encoder.

pub fn filter_strategy(self, strategy: FilterStrategy) -> Self[src]

Set a specific filter strategy. If this is never called, than png_pong attempts to choose the best (compromise speed / compression) filter strategy.

pub fn compression_level(self, level: u8) -> Self[src]

Set the compression level (default: 6). Must be between 0 and 10.

pub fn interlace(self) -> Self[src]

Encode interlaced (default non-interlaced)

pub fn into_chunk_enc(self) -> ChunkEnc<W>[src]

Convert into a chunk encoder.

pub fn into_step_enc(self) -> StepEnc<W>[src]

Convert into a step encoder.

Trait Implementations

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

Auto Trait Implementations

impl<W> RefUnwindSafe for Encoder<W> where
    W: RefUnwindSafe

impl<W> Send for Encoder<W> where
    W: Send

impl<W> Sync for Encoder<W> where
    W: Sync

impl<W> Unpin for Encoder<W> where
    W: Unpin

impl<W> UnwindSafe for Encoder<W> where
    W: UnwindSafe

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.