pub enum Extrapolate {
Clamp,
Loop,
PingPong,
Linear,
}Variants§
Clamp
Clamp to first/last value.
Loop
Loop the curve.
PingPong
Ping-pong loop.
Linear
Linear extrapolation from last tangent.
Trait Implementations§
Source§impl Clone for Extrapolate
impl Clone for Extrapolate
Source§fn clone(&self) -> Extrapolate
fn clone(&self) -> Extrapolate
Returns a duplicate 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 Extrapolate
impl Debug for Extrapolate
Source§impl PartialEq for Extrapolate
impl PartialEq for Extrapolate
impl Copy for Extrapolate
impl StructuralPartialEq for Extrapolate
Auto Trait Implementations§
impl Freeze for Extrapolate
impl RefUnwindSafe for Extrapolate
impl Send for Extrapolate
impl Sync for Extrapolate
impl Unpin for Extrapolate
impl UnsafeUnpin for Extrapolate
impl UnwindSafe for Extrapolate
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