[][src]Struct gifsicle::Gif_Extension

#[repr(C)]
pub struct Gif_Extension {
    pub kind: c_int,
    pub appname: *mut c_char,
    pub applength: c_int,
    pub data: *mut u8,
    pub length: u32,
    pub packetized: c_int,
    pub stream: *mut Gif_Stream,
    pub image: *mut Gif_Image,
    pub next: *mut Gif_Extension,
    pub free_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
}

GIF_EXTENSION

Fields

kind: c_intappname: *mut c_charapplength: c_intdata: *mut u8length: u32packetized: c_intstream: *mut Gif_Streamimage: *mut Gif_Imagenext: *mut Gif_Extensionfree_data: Option<unsafe extern "C" fn(arg1: *mut c_void)>

Trait Implementations

impl Clone for Gif_Extension[src]

impl Copy for Gif_Extension[src]

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