[−][src]Struct image::gif::Frame
A GIF frame
Fields
delay: u16
Frame delay in units of 10 ms.
dispose: DisposalMethod
Disposal method.
transparent: Option<u8>
Transparent index (if available).
needs_user_input: bool
True if the frame needs user input do be displayed.
top: u16
Offset from the top border of the canvas.
left: u16
Offset from the left border of the canvas.
width: u16
Width of the frame.
height: u16
Height of the frame.
interlaced: bool
True if the image is interlaced.
palette: Option<Vec<u8>>
Frame local color palette if available.
buffer: Cow<'a, [u8]>
Buffer containing the image data. Only indices unless configured differently.
Methods
impl Frame<'static>
[src]
pub fn from_rgba(width: u16, height: u16, pixels: &mut [u8]) -> Frame<'static>
[src]
Creates a frame from pixels in RGBA format.
Note: This method is not optimized for speed.
pub fn from_rgb(width: u16, height: u16, pixels: &[u8]) -> Frame<'static>
[src]
Creates a frame from pixels in RGB format.
Note: This method is not optimized for speed.
Trait Implementations
impl<'a> Clone for Frame<'a>
[src]
impl<'a> Default for Frame<'a>
[src]
impl<'a> Debug for Frame<'a>
[src]
Auto Trait Implementations
impl<'a> Send for Frame<'a>
impl<'a> Sync for Frame<'a>
impl<'a> Unpin for Frame<'a>
impl<'a> UnwindSafe for Frame<'a>
impl<'a> RefUnwindSafe for Frame<'a>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,