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 more