pub enum MotionEasing {
Linear,
EaseOut,
EaseInOut,
EaseOutStrong,
EaseInOutStrong,
}Expand description
Renderer-neutral easing token.
Variants§
Linear
Linear interpolation.
EaseOut
Standard ease-out layout motion.
EaseInOut
Standard ease-in-out motion.
EaseOutStrong
Strong ease-out motion for committed layout transitions.
EaseInOutStrong
Strong ease-in-out motion for zoom and continuity transitions.
Implementations§
Trait Implementations§
Source§impl Clone for MotionEasing
impl Clone for MotionEasing
impl Copy for MotionEasing
Source§impl Debug for MotionEasing
impl Debug for MotionEasing
impl Eq for MotionEasing
Source§impl PartialEq for MotionEasing
impl PartialEq for MotionEasing
impl StructuralPartialEq for MotionEasing
Auto Trait Implementations§
impl Freeze for MotionEasing
impl RefUnwindSafe for MotionEasing
impl Send for MotionEasing
impl Sync for MotionEasing
impl Unpin for MotionEasing
impl UnsafeUnpin for MotionEasing
impl UnwindSafe for MotionEasing
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