pub struct GraphicsControlExtension {
pub disposal_method: u8,
pub user_input_flag: bool,
pub has_transparency: bool,
pub delay_time: u16,
pub transparent_color_index: u8,
}Expand description
Graphics Control Extension data.
Fields§
§disposal_method: u8Disposal method.
user_input_flag: boolUser input flag.
has_transparency: boolTransparency flag.
delay_time: u16Delay time in hundredths of a second.
transparent_color_index: u8Transparent color index.
Trait Implementations§
Source§impl Clone for GraphicsControlExtension
impl Clone for GraphicsControlExtension
Source§fn clone(&self) -> GraphicsControlExtension
fn clone(&self) -> GraphicsControlExtension
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphicsControlExtension
impl Debug for GraphicsControlExtension
Source§impl Default for GraphicsControlExtension
impl Default for GraphicsControlExtension
Source§fn default() -> GraphicsControlExtension
fn default() -> GraphicsControlExtension
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphicsControlExtension
impl RefUnwindSafe for GraphicsControlExtension
impl Send for GraphicsControlExtension
impl Sync for GraphicsControlExtension
impl Unpin for GraphicsControlExtension
impl UnsafeUnpin for GraphicsControlExtension
impl UnwindSafe for GraphicsControlExtension
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more