pub enum AnimationDirectionValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Normal,
Reverse,
Alternate,
AlternateReverse,
}Variants§
Implementations§
Source§impl AnimationDirectionValue
impl AnimationDirectionValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is AnimationDirectionValue::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 AnimationDirectionValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Unset otherwise false
Sourcepub const fn is_normal(&self) -> bool
pub const fn is_normal(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Normal otherwise false
Sourcepub const fn is_reverse(&self) -> bool
pub const fn is_reverse(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Reverse otherwise false
Sourcepub const fn is_alternate(&self) -> bool
pub const fn is_alternate(&self) -> bool
Returns true if the enum is AnimationDirectionValue::Alternate otherwise false
Sourcepub const fn is_alternate_reverse(&self) -> bool
pub const fn is_alternate_reverse(&self) -> bool
Returns true if the enum is AnimationDirectionValue::AlternateReverse otherwise false
Trait Implementations§
Source§impl Clone for AnimationDirectionValue
impl Clone for AnimationDirectionValue
Source§fn clone(&self) -> AnimationDirectionValue
fn clone(&self) -> AnimationDirectionValue
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 AnimationDirectionValue
impl Debug for AnimationDirectionValue
Source§impl Display for AnimationDirectionValue
impl Display for AnimationDirectionValue
Source§impl PartialEq for AnimationDirectionValue
impl PartialEq for AnimationDirectionValue
impl StructuralPartialEq for AnimationDirectionValue
impl UnitDataType<AnimationDirection<AnimationDirectionValue>> for AnimationDirectionValue
Auto Trait Implementations§
impl Freeze for AnimationDirectionValue
impl RefUnwindSafe for AnimationDirectionValue
impl Send for AnimationDirectionValue
impl Sync for AnimationDirectionValue
impl Unpin for AnimationDirectionValue
impl UnwindSafe for AnimationDirectionValue
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