[][src]Struct gifsicle::Gif_Stream

#[repr(C)]
pub struct Gif_Stream {
    pub images: *mut *mut Gif_Image,
    pub nimages: c_int,
    pub imagescap: c_int,
    pub global: *mut Gif_Colormap,
    pub background: u16,
    pub screen_width: u16,
    pub screen_height: u16,
    pub loopcount: c_long,
    pub end_comment: *mut Gif_Comment,
    pub end_extension_list: *mut Gif_Extension,
    pub errors: c_uint,
    pub user_flags: u32,
    pub landmark: *const c_char,
    pub refcount: c_int,
}

GIF_STREAM

Fields

images: *mut *mut Gif_Imagenimages: c_intimagescap: c_intglobal: *mut Gif_Colormapbackground: u16screen_width: u16screen_height: u16loopcount: c_longend_comment: *mut Gif_Commentend_extension_list: *mut Gif_Extensionerrors: c_uintuser_flags: u32landmark: *const c_charrefcount: c_int

Trait Implementations

impl Clone for Gif_Stream[src]

impl Copy for Gif_Stream[src]

impl Debug for Gif_Stream[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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