pub enum AnimationDelayValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Time(Time),
}Variants§
Implementations§
Source§impl AnimationDelayValue
impl AnimationDelayValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is AnimationDelayValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is AnimationDelayValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is AnimationDelayValue::Revert otherwise false
Sourcepub const fn is_revert_layer(&self) -> bool
pub const fn is_revert_layer(&self) -> bool
Returns true if the enum is AnimationDelayValue::RevertLayer otherwise false
Trait Implementations§
Source§impl Clone for AnimationDelayValue
impl Clone for AnimationDelayValue
Source§fn clone(&self) -> AnimationDelayValue
fn clone(&self) -> AnimationDelayValue
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 AnimationDelayValue
impl Debug for AnimationDelayValue
Source§impl Display for AnimationDelayValue
impl Display for AnimationDelayValue
Source§impl PartialEq for AnimationDelayValue
impl PartialEq for AnimationDelayValue
impl StructuralPartialEq for AnimationDelayValue
impl UnitDataType<AnimationDelay<AnimationDelayValue>> for AnimationDelayValue
Auto Trait Implementations§
impl Freeze for AnimationDelayValue
impl RefUnwindSafe for AnimationDelayValue
impl Send for AnimationDelayValue
impl Sync for AnimationDelayValue
impl Unpin for AnimationDelayValue
impl UnwindSafe for AnimationDelayValue
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