[][src]Struct libwebp_sys::WebPIterator

#[repr(C)]
pub struct WebPIterator {
    pub frame_num: c_int,
    pub num_frames: c_int,
    pub x_offset: c_int,
    pub y_offset: c_int,
    pub width: c_int,
    pub height: c_int,
    pub duration: c_int,
    pub dispose_method: WebPMuxAnimDispose,
    pub complete: c_int,
    pub fragment: WebPData,
    pub has_alpha: c_int,
    pub blend_method: WebPMuxAnimBlend,
    // some fields omitted
}
This is supported on feature="demux" only.

Fields

frame_num: c_int
This is supported on feature="demux" only.
num_frames: c_int
This is supported on feature="demux" only.
x_offset: c_int
This is supported on feature="demux" only.
y_offset: c_int
This is supported on feature="demux" only.
width: c_int
This is supported on feature="demux" only.
height: c_int
This is supported on feature="demux" only.
duration: c_int
This is supported on feature="demux" only.
dispose_method: WebPMuxAnimDispose
This is supported on feature="demux" only.
complete: c_int
This is supported on feature="demux" only.
fragment: WebPData
This is supported on feature="demux" only.
has_alpha: c_int
This is supported on feature="demux" only.
blend_method: WebPMuxAnimBlend
This is supported on feature="demux" only.

Trait Implementations

impl Clone for WebPIterator[src]

impl Copy for WebPIterator[src]

impl Debug for WebPIterator[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.