Enum gstreamer_controller::InterpolationMode [−][src]
#[non_exhaustive] pub enum InterpolationMode { None, Linear, Cubic, CubicMonotonic, // some variants omitted }
Expand description
The various interpolation modes available.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
steps-like interpolation, default
linear interpolation
cubic interpolation (natural), may overshoot the min or max values set by the control point, but is more ‘curvy’
monotonic cubic interpolation, will not produce any values outside of the min-max range set by the control points (Since: 1.8)
Trait Implementations
type Checker = GenericValueTypeChecker<Self>
type Checker = GenericValueTypeChecker<Self>
Value type checker.
Get the contained value from a Value
. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for InterpolationMode
impl Send for InterpolationMode
impl Sync for InterpolationMode
impl Unpin for InterpolationMode
impl UnwindSafe for InterpolationMode
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a SendValue
clone of self
.