#[repr(i32)]pub enum EaseType {
Show 41 variants
Linear = 0,
InQuad = 1,
OutQuad = 2,
InOutQuad = 3,
InCubic = 4,
OutCubic = 5,
InOutCubic = 6,
InQuart = 7,
OutQuart = 8,
InOutQuart = 9,
InQuint = 10,
OutQuint = 11,
InOutQuint = 12,
InSine = 13,
OutSine = 14,
InOutSine = 15,
InExpo = 16,
OutExpo = 17,
InOutExpo = 18,
InCirc = 19,
OutCirc = 20,
InOutCirc = 21,
InElastic = 22,
OutElastic = 23,
InOutElastic = 24,
InBack = 25,
OutBack = 26,
InOutBack = 27,
InBounce = 28,
OutBounce = 29,
InOutBounce = 30,
OutInQuad = 31,
OutInCubic = 32,
OutInQuart = 33,
OutInQuint = 34,
OutInSine = 35,
OutInExpo = 36,
OutInCirc = 37,
OutInElastic = 38,
OutInBack = 39,
OutInBounce = 40,
}Variants§
Linear = 0
InQuad = 1
OutQuad = 2
InOutQuad = 3
InCubic = 4
OutCubic = 5
InOutCubic = 6
InQuart = 7
OutQuart = 8
InOutQuart = 9
InQuint = 10
OutQuint = 11
InOutQuint = 12
InSine = 13
OutSine = 14
InOutSine = 15
InExpo = 16
OutExpo = 17
InOutExpo = 18
InCirc = 19
OutCirc = 20
InOutCirc = 21
InElastic = 22
OutElastic = 23
InOutElastic = 24
InBack = 25
OutBack = 26
InOutBack = 27
InBounce = 28
OutBounce = 29
InOutBounce = 30
OutInQuad = 31
OutInCubic = 32
OutInQuart = 33
OutInQuint = 34
OutInSine = 35
OutInExpo = 36
OutInCirc = 37
OutInElastic = 38
OutInBack = 39
OutInBounce = 40
Trait Implementations§
impl Copy for EaseType
impl StructuralPartialEq for EaseType
Auto Trait Implementations§
impl Freeze for EaseType
impl RefUnwindSafe for EaseType
impl Send for EaseType
impl Sync for EaseType
impl Unpin for EaseType
impl UnwindSafe for EaseType
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