pub enum EventEasing {
Show 35 variants
Linear = 0,
LinearOut = 1,
LinearIn = 2,
QuadIn = 3,
QuadOut = 4,
QuadInOut = 5,
CubicIn = 6,
CubicOut = 7,
CubicInOut = 8,
QuartIn = 9,
QuartOut = 10,
QuartInOut = 11,
QuintiIn = 12,
QuintOut = 13,
QuintInOut = 14,
SineIn = 15,
SineOut = 16,
SineInOut = 17,
ExpoIn = 18,
ExpoOut = 19,
ExpoInOut = 20,
CircIn = 21,
CircOut = 22,
CircInOut = 23,
ElasticIn = 24,
ElasticOut = 25,
ElasticHalfOut = 26,
ElasticQuarterOut = 27,
ElasticInOut = 28,
BackIn = 29,
BackOut = 30,
BackInOut = 31,
BounceIn = 32,
BounceOut = 33,
BounceInOut = 34,
}
Variants§
Linear = 0
LinearOut = 1
LinearIn = 2
QuadIn = 3
QuadOut = 4
QuadInOut = 5
CubicIn = 6
CubicOut = 7
CubicInOut = 8
QuartIn = 9
QuartOut = 10
QuartInOut = 11
QuintiIn = 12
QuintOut = 13
QuintInOut = 14
SineIn = 15
SineOut = 16
SineInOut = 17
ExpoIn = 18
ExpoOut = 19
ExpoInOut = 20
CircIn = 21
CircOut = 22
CircInOut = 23
ElasticIn = 24
ElasticOut = 25
ElasticHalfOut = 26
ElasticQuarterOut = 27
ElasticInOut = 28
BackIn = 29
BackOut = 30
BackInOut = 31
BounceIn = 32
BounceOut = 33
BounceInOut = 34
Trait Implementations§
Source§impl Clone for EventEasing
impl Clone for EventEasing
Source§fn clone(&self) -> EventEasing
fn clone(&self) -> EventEasing
Returns a copy 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 EventEasing
impl Debug for EventEasing
Source§impl Default for EventEasing
impl Default for EventEasing
Source§fn default() -> EventEasing
fn default() -> EventEasing
Returns the “default value” for a type. Read more
Source§impl Display for EventEasing
impl Display for EventEasing
Source§impl FromStr for EventEasing
impl FromStr for EventEasing
Source§impl Hash for EventEasing
impl Hash for EventEasing
Source§impl PartialEq for EventEasing
impl PartialEq for EventEasing
Source§impl TryFrom<i32> for EventEasing
impl TryFrom<i32> for EventEasing
impl Copy for EventEasing
impl Eq for EventEasing
impl StructuralPartialEq for EventEasing
Auto Trait Implementations§
impl Freeze for EventEasing
impl RefUnwindSafe for EventEasing
impl Send for EventEasing
impl Sync for EventEasing
impl Unpin for EventEasing
impl UnwindSafe for EventEasing
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