pub enum SourceInterpolationV1 {
Step,
Linear,
CubicSpline,
Other,
}Expand description
Source interpolation retained by a loader.
Variants§
Step
Step/constant interpolation.
Linear
Linear interpolation.
CubicSpline
Cubic-spline interpolation.
Other
Another source interpolation spelling.
Trait Implementations§
Source§impl Clone for SourceInterpolationV1
impl Clone for SourceInterpolationV1
Source§fn clone(&self) -> SourceInterpolationV1
fn clone(&self) -> SourceInterpolationV1
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 SourceInterpolationV1
Source§impl Debug for SourceInterpolationV1
impl Debug for SourceInterpolationV1
impl Eq for SourceInterpolationV1
Source§impl Ord for SourceInterpolationV1
impl Ord for SourceInterpolationV1
Source§fn cmp(&self, other: &SourceInterpolationV1) -> Ordering
fn cmp(&self, other: &SourceInterpolationV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SourceInterpolationV1
impl PartialEq for SourceInterpolationV1
Source§impl PartialOrd for SourceInterpolationV1
impl PartialOrd for SourceInterpolationV1
impl StructuralPartialEq for SourceInterpolationV1
Auto Trait Implementations§
impl Freeze for SourceInterpolationV1
impl RefUnwindSafe for SourceInterpolationV1
impl Send for SourceInterpolationV1
impl Sync for SourceInterpolationV1
impl Unpin for SourceInterpolationV1
impl UnsafeUnpin for SourceInterpolationV1
impl UnwindSafe for SourceInterpolationV1
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