#[repr(u32)]pub enum AnimationInterpolationType {
InterpolationNearest = 0,
InterpolationLinear = 1,
InterpolationCubic = 2,
}Variants§
Trait Implementations§
Source§impl Clone for AnimationInterpolationType
impl Clone for AnimationInterpolationType
Source§fn clone(&self) -> AnimationInterpolationType
fn clone(&self) -> AnimationInterpolationType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnimationInterpolationType
Source§impl Debug for AnimationInterpolationType
impl Debug for AnimationInterpolationType
impl Eq for AnimationInterpolationType
Source§impl Hash for AnimationInterpolationType
impl Hash for AnimationInterpolationType
Source§impl PartialEq for AnimationInterpolationType
impl PartialEq for AnimationInterpolationType
Source§fn eq(&self, other: &AnimationInterpolationType) -> bool
fn eq(&self, other: &AnimationInterpolationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnimationInterpolationType
Auto Trait Implementations§
impl Freeze for AnimationInterpolationType
impl RefUnwindSafe for AnimationInterpolationType
impl Send for AnimationInterpolationType
impl Sync for AnimationInterpolationType
impl Unpin for AnimationInterpolationType
impl UnsafeUnpin for AnimationInterpolationType
impl UnwindSafe for AnimationInterpolationType
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