pub enum InterpolationEnum {
Linear,
Step,
CubicSpline,
}Expand description
glTF known interpolation algorithms.
Variants§
Trait Implementations§
Source§impl Clone for InterpolationEnum
impl Clone for InterpolationEnum
Source§fn clone(&self) -> InterpolationEnum
fn clone(&self) -> InterpolationEnum
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 moreSource§impl Debug for InterpolationEnum
impl Debug for InterpolationEnum
Source§impl PartialEq for InterpolationEnum
impl PartialEq for InterpolationEnum
Source§fn eq(&self, other: &InterpolationEnum) -> bool
fn eq(&self, other: &InterpolationEnum) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InterpolationEnum
impl Eq for InterpolationEnum
impl StructuralPartialEq for InterpolationEnum
Auto Trait Implementations§
impl Freeze for InterpolationEnum
impl RefUnwindSafe for InterpolationEnum
impl Send for InterpolationEnum
impl Sync for InterpolationEnum
impl Unpin for InterpolationEnum
impl UnsafeUnpin for InterpolationEnum
impl UnwindSafe for InterpolationEnum
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