pub enum PathEasing {
Linear,
EaseInOut,
EaseIn,
EaseOut,
Instant,
}Expand description
Easing function for a path segment.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PathEasing
impl Clone for PathEasing
Source§fn clone(&self) -> PathEasing
fn clone(&self) -> PathEasing
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 PathEasing
impl Debug for PathEasing
Source§impl PartialEq for PathEasing
impl PartialEq for PathEasing
impl Copy for PathEasing
impl StructuralPartialEq for PathEasing
Auto Trait Implementations§
impl Freeze for PathEasing
impl RefUnwindSafe for PathEasing
impl Send for PathEasing
impl Sync for PathEasing
impl Unpin for PathEasing
impl UnsafeUnpin for PathEasing
impl UnwindSafe for PathEasing
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