[][src]Struct gifsicle::Gif_Image

#[repr(C)]
pub struct Gif_Image {
    pub img: *mut *mut u8,
    pub image_data: *mut u8,
    pub width: u16,
    pub height: u16,
    pub left: u16,
    pub top: u16,
    pub delay: u16,
    pub disposal: u8,
    pub interlace: u8,
    pub transparent: c_short,
    pub local: *mut Gif_Colormap,
    pub identifier: *mut c_char,
    pub comment: *mut Gif_Comment,
    pub extension_list: *mut Gif_Extension,
    pub free_image_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
    pub compressed_len: u32,
    pub compressed_errors: u32,
    pub compressed: *mut u8,
    pub free_compressed: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
    pub user_flags: u32,
    pub user_data: *mut c_void,
    pub free_user_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
    pub refcount: c_int,
}

GIF_IMAGE

Fields

img: *mut *mut u8image_data: *mut u8width: u16height: u16left: u16top: u16delay: u16disposal: u8interlace: u8transparent: c_shortlocal: *mut Gif_Colormapidentifier: *mut c_charcomment: *mut Gif_Commentextension_list: *mut Gif_Extensionfree_image_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>compressed_len: u32compressed_errors: u32compressed: *mut u8free_compressed: Option<unsafe extern "C" fn(arg1: *mut c_void)>user_flags: u32user_data: *mut c_voidfree_user_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>refcount: c_int

Trait Implementations

impl Clone for Gif_Image[src]

impl Copy for Gif_Image[src]

impl Debug for Gif_Image[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]