#[repr(u8)]pub enum DelayedAllOffEffectVariant {
Delayedofffastfade = 0,
Nofade = 1,
Delayedoffslowfade = 2,
}Variants§
Delayedofffastfade = 0
Fade to off in 0.8 seconds
Nofade = 1
No fade
Delayedoffslowfade = 2
50% dim down in 0.8 seconds then fade to off in 12 seconds
Implementations§
Trait Implementations§
Source§impl Clone for DelayedAllOffEffectVariant
impl Clone for DelayedAllOffEffectVariant
Source§fn clone(&self) -> DelayedAllOffEffectVariant
fn clone(&self) -> DelayedAllOffEffectVariant
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 DelayedAllOffEffectVariant
impl Debug for DelayedAllOffEffectVariant
Source§impl<'de> Deserialize<'de> for DelayedAllOffEffectVariant
impl<'de> Deserialize<'de> for DelayedAllOffEffectVariant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<DelayedAllOffEffectVariant> for u8
impl From<DelayedAllOffEffectVariant> for u8
Source§fn from(val: DelayedAllOffEffectVariant) -> Self
fn from(val: DelayedAllOffEffectVariant) -> Self
Converts to this type from the input type.
impl Copy for DelayedAllOffEffectVariant
impl Eq for DelayedAllOffEffectVariant
impl StructuralPartialEq for DelayedAllOffEffectVariant
Auto Trait Implementations§
impl Freeze for DelayedAllOffEffectVariant
impl RefUnwindSafe for DelayedAllOffEffectVariant
impl Send for DelayedAllOffEffectVariant
impl Sync for DelayedAllOffEffectVariant
impl Unpin for DelayedAllOffEffectVariant
impl UnwindSafe for DelayedAllOffEffectVariant
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