#[repr(C, u8)]pub enum AnimationInterpolationFunction {
Ease,
Linear,
EaseIn,
EaseOut,
EaseInOut,
CubicBezier(SvgCubicCurve),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AnimationInterpolationFunction
impl Clone for AnimationInterpolationFunction
Source§fn clone(&self) -> AnimationInterpolationFunction
fn clone(&self) -> AnimationInterpolationFunction
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 PartialEq for AnimationInterpolationFunction
impl PartialEq for AnimationInterpolationFunction
Source§fn eq(&self, other: &AnimationInterpolationFunction) -> bool
fn eq(&self, other: &AnimationInterpolationFunction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for AnimationInterpolationFunction
impl StructuralPartialEq for AnimationInterpolationFunction
Auto Trait Implementations§
impl Freeze for AnimationInterpolationFunction
impl RefUnwindSafe for AnimationInterpolationFunction
impl Send for AnimationInterpolationFunction
impl Sync for AnimationInterpolationFunction
impl Unpin for AnimationInterpolationFunction
impl UnwindSafe for AnimationInterpolationFunction
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