[][src]Struct gif::Encoder

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

GIF encoder.

Methods

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

Creates a new encoder.

global_palette gives the global color palette in the format [r, g, b, ...], if no global palette shall be used an empty slice may be supplied.

Writes the global color palette.

Writes a frame to the image.

Note: This function also writes a control extension if necessary.

Writes an extension to the image.

It is normally not necessary to call this method manually.

Writes a raw extension to the image.

This method can be used to write an unsupported extesion to the file. func is the extension identifier (e.g. Extension::Application as u8). data are the extension payload blocks. If any contained slice has a lenght > 255 it is automatically divided into sub-blocks.

Trait Implementations

impl<W: Write> Parameter<Encoder<W>> for Repeat
[src]

Result type of set_param.

Sets self as a parameter of Object.

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

Executes the destructor for this type. Read more

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more