Struct libwebp_sys::WebPIterator[][src]

#[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 crate feature demux only.

Fields

frame_num: c_intnum_frames: c_intx_offset: c_inty_offset: c_intwidth: c_intheight: c_intduration: c_intdispose_method: WebPMuxAnimDisposecomplete: c_intfragment: WebPDatahas_alpha: c_intblend_method: WebPMuxAnimBlend

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.