struct Eased {
from: f32,
to: f32,
toggled_at: Duration,
}Expand description
One easing in flight: where it started, where it is heading, and when it was last aimed somewhere new.
Fields§
§from: f32§to: f32§toggled_at: DurationTrait Implementations§
Auto Trait Implementations§
impl Freeze for Eased
impl RefUnwindSafe for Eased
impl Send for Eased
impl Sync for Eased
impl Unpin for Eased
impl UnsafeUnpin for Eased
impl UnwindSafe for Eased
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