pub enum AnimationTimingFunctionValue {
Show 18 variants
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Linear,
Ease,
EaseIn,
EaseOut,
EaseInOut,
StepStart,
StepEnd,
JumpStart,
JumpEnd,
JumpNone,
JumpBoth,
Start,
End,
}Variants§
Initial
Inherit
Revert
RevertLayer
Unset
Linear
Ease
EaseIn
EaseOut
EaseInOut
StepStart
StepEnd
JumpStart
JumpEnd
JumpNone
JumpBoth
Start
End
Implementations§
Source§impl AnimationTimingFunctionValue
impl AnimationTimingFunctionValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::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 AnimationTimingFunctionValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::Unset otherwise false
Sourcepub const fn is_linear(&self) -> bool
pub const fn is_linear(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::Linear otherwise false
Sourcepub const fn is_ease(&self) -> bool
pub const fn is_ease(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::Ease otherwise false
Sourcepub const fn is_ease_in(&self) -> bool
pub const fn is_ease_in(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::EaseIn otherwise false
Sourcepub const fn is_ease_out(&self) -> bool
pub const fn is_ease_out(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::EaseOut otherwise false
Sourcepub const fn is_ease_in_out(&self) -> bool
pub const fn is_ease_in_out(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::EaseInOut otherwise false
Sourcepub const fn is_step_start(&self) -> bool
pub const fn is_step_start(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::StepStart otherwise false
Sourcepub const fn is_step_end(&self) -> bool
pub const fn is_step_end(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::StepEnd otherwise false
Sourcepub const fn is_jump_start(&self) -> bool
pub const fn is_jump_start(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::JumpStart otherwise false
Sourcepub const fn is_jump_end(&self) -> bool
pub const fn is_jump_end(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::JumpEnd otherwise false
Sourcepub const fn is_jump_none(&self) -> bool
pub const fn is_jump_none(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::JumpNone otherwise false
Sourcepub const fn is_jump_both(&self) -> bool
pub const fn is_jump_both(&self) -> bool
Returns true if the enum is AnimationTimingFunctionValue::JumpBoth otherwise false
Trait Implementations§
Source§impl Clone for AnimationTimingFunctionValue
impl Clone for AnimationTimingFunctionValue
Source§fn clone(&self) -> AnimationTimingFunctionValue
fn clone(&self) -> AnimationTimingFunctionValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AnimationTimingFunctionValue
impl Debug for AnimationTimingFunctionValue
Source§impl PartialEq for AnimationTimingFunctionValue
impl PartialEq for AnimationTimingFunctionValue
Source§fn eq(&self, other: &AnimationTimingFunctionValue) -> bool
fn eq(&self, other: &AnimationTimingFunctionValue) -> bool
self and other values to be equal, and is used by ==.