[][src]Struct gifriend::Frame

pub struct Frame {
    pub delay_time: u16,
    pub bytes: Vec<u8>,
}

解析后的每一帧,delay_time 的单位是 10ms,bytes 保存的是 RGBA 格式(每像素四字节)的图像数据

Fields

delay_time: u16bytes: Vec<u8>

Methods

impl Frame[src]

pub fn new(
    screen_width: u16,
    screen_height: u16,
    color_table: &ColorTable,
    ctrl: Option<GraphicControlExtension>,
    img: &TableBasedImage
) -> Self
[src]

Trait Implementations

impl Default for Frame[src]

Auto Trait Implementations

impl Sync for Frame

impl Unpin for Frame

impl Send for Frame

impl RefUnwindSafe for Frame

impl UnwindSafe for Frame

Blanket Implementations

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]