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