pub enum ParsedFade {
Simple {
fade_in_ms: i32,
fade_out_ms: i32,
},
Complex {
alpha1: i32,
alpha2: i32,
alpha3: i32,
t1_ms: i32,
t2_ms: i32,
t3_ms: i32,
t4_ms: i32,
},
}Variants§
Trait Implementations§
Source§impl Clone for ParsedFade
impl Clone for ParsedFade
Source§fn clone(&self) -> ParsedFade
fn clone(&self) -> ParsedFade
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParsedFade
impl Debug for ParsedFade
Source§impl PartialEq for ParsedFade
impl PartialEq for ParsedFade
Source§fn eq(&self, other: &ParsedFade) -> bool
fn eq(&self, other: &ParsedFade) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ParsedFade
impl Eq for ParsedFade
impl StructuralPartialEq for ParsedFade
Auto Trait Implementations§
impl Freeze for ParsedFade
impl RefUnwindSafe for ParsedFade
impl Send for ParsedFade
impl Sync for ParsedFade
impl Unpin for ParsedFade
impl UnsafeUnpin for ParsedFade
impl UnwindSafe for ParsedFade
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