pub struct EaseInOutBack;Expand description
An Easing function that eases
in and out using a curve that backs away initially
See https://easings.net/#easeInOutBack for a visualization and more information.
Implementations§
Source§impl EaseInOutBack
 
impl EaseInOutBack
Sourcepub fn ease(progress: f32) -> f32
 
pub fn ease(progress: f32) -> f32
Eases in and out using a curve that backs away initially
See https://easings.net/#easeInOutBack for a visualization and more information.
Trait Implementations§
Source§impl Clone for EaseInOutBack
 
impl Clone for EaseInOutBack
Source§fn clone(&self) -> EaseInOutBack
 
fn clone(&self) -> EaseInOutBack
Returns a duplicate 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 EaseInOutBack
 
impl Debug for EaseInOutBack
Source§impl Easing for EaseInOutBack
 
impl Easing for EaseInOutBack
Source§impl From<EaseInOutBack> for EasingFunction
 
impl From<EaseInOutBack> for EasingFunction
Source§fn from(_function: EaseInOutBack) -> Self
 
fn from(_function: EaseInOutBack) -> Self
Converts to this type from the input type.
impl Copy for EaseInOutBack
Auto Trait Implementations§
impl Freeze for EaseInOutBack
impl RefUnwindSafe for EaseInOutBack
impl Send for EaseInOutBack
impl Sync for EaseInOutBack
impl Unpin for EaseInOutBack
impl UnwindSafe for EaseInOutBack
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