[−][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 to 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]
impl Frame<'static>
pub fn from_rgba(width: u16, height: u16, pixels: &mut [u8]) -> Frame<'static>
[src]
pub fn from_rgba(width: u16, height: u16, pixels: &mut [u8]) -> Frame<'static>
Creates a frame from pixels in RGBA format.
Note: This method is not optimized for speed.
pub fn from_palette_pixels(
width: u16,
height: u16,
pixels: &[u8],
palette: &[u8],
transparent: Option<u8>
) -> Frame<'static>
[src]
pub fn from_palette_pixels(
width: u16,
height: u16,
pixels: &[u8],
palette: &[u8],
transparent: Option<u8>
) -> Frame<'static>
Creates a frame from a palette and indexed pixels
pub fn from_indexed_pixels(
width: u16,
height: u16,
pixels: &[u8],
transparent: Option<u8>
) -> Frame<'static>
[src]
pub fn from_indexed_pixels(
width: u16,
height: u16,
pixels: &[u8],
transparent: Option<u8>
) -> Frame<'static>
Creates a frame from indexed pixels in the global palette
pub fn from_rgb(width: u16, height: u16, pixels: &[u8]) -> Frame<'static>
[src]
pub fn from_rgb(width: u16, height: u16, pixels: &[u8]) -> Frame<'static>
Creates a frame from pixels in RGB format.
Note: This method is not optimized for speed.
Trait Implementations
impl<'a> Debug for Frame<'a>
[src]
impl<'a> Debug for Frame<'a>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<'a> Clone for Frame<'a>
[src]
impl<'a> Clone for Frame<'a>
fn clone(&self) -> Frame<'a>
[src]
fn clone(&self) -> Frame<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<'a> Default for Frame<'a>
[src]
impl<'a> Default for Frame<'a>
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> SetParameter for T
[src]
impl<T> SetParameter for T