#[repr(u32)]pub enum TweenTransitionType {
TransLinear = 0,
TransSine = 1,
TransQuint = 2,
TransQuart = 3,
TransQuad = 4,
TransExpo = 5,
TransElastic = 6,
TransCubic = 7,
TransCirc = 8,
TransBounce = 9,
TransBack = 10,
}
Variants§
TransLinear = 0
TransSine = 1
TransQuint = 2
TransQuart = 3
TransQuad = 4
TransExpo = 5
TransElastic = 6
TransCubic = 7
TransCirc = 8
TransBounce = 9
TransBack = 10
Trait Implementations§
Source§impl Clone for TweenTransitionType
impl Clone for TweenTransitionType
Source§fn clone(&self) -> TweenTransitionType
fn clone(&self) -> TweenTransitionType
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 TweenTransitionType
impl Debug for TweenTransitionType
Source§impl Hash for TweenTransitionType
impl Hash for TweenTransitionType
Source§impl PartialEq for TweenTransitionType
impl PartialEq for TweenTransitionType
impl Copy for TweenTransitionType
impl Eq for TweenTransitionType
impl StructuralPartialEq for TweenTransitionType
Auto Trait Implementations§
impl Freeze for TweenTransitionType
impl RefUnwindSafe for TweenTransitionType
impl Send for TweenTransitionType
impl Sync for TweenTransitionType
impl Unpin for TweenTransitionType
impl UnwindSafe for TweenTransitionType
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