#[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 copy 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 AnimationInterpolationType
impl Debug for AnimationInterpolationType
Source§impl Hash for AnimationInterpolationType
impl Hash for AnimationInterpolationType
impl Copy for AnimationInterpolationType
impl Eq for AnimationInterpolationType
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 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