Enum gif::DisposalMethod
source · #[repr(u8)]
pub enum DisposalMethod {
Any,
Keep,
Background,
Previous,
}
Expand description
Disposal method
Variants§
Any
StreamingDecoder is not required to take any action.
Keep
Do not dispose.
Background
Restore to background color.
Previous
Restore to previous.
Implementations§
source§impl DisposalMethod
impl DisposalMethod
sourcepub fn from_u8(n: u8) -> Option<DisposalMethod>
pub fn from_u8(n: u8) -> Option<DisposalMethod>
Converts u8
to Option<Self>
Trait Implementations§
source§impl Clone for DisposalMethod
impl Clone for DisposalMethod
source§fn clone(&self) -> DisposalMethod
fn clone(&self) -> DisposalMethod
Returns a copy 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 DisposalMethod
impl Debug for DisposalMethod
source§impl PartialEq<DisposalMethod> for DisposalMethod
impl PartialEq<DisposalMethod> for DisposalMethod
source§fn eq(&self, other: &DisposalMethod) -> bool
fn eq(&self, other: &DisposalMethod) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.