[][src]Struct splines::key::Key

pub struct Key<T, V> {
    pub t: T,
    pub value: V,
    pub interpolation: Interpolation<T>,
}

A spline control point.

This type associates a value at a given interpolation parameter value. It also contains an interpolation mode used to determine how to interpolate values on the segment defined by this key and the next one – if existing. Have a look at Interpolation for further details.

Fields

t: T

Interpolation parameter at which the Key should be reached.

value: V

Carried value.

interpolation: Interpolation<T>

Interpolation mode.

Methods

impl<T, V> Key<T, V>[src]

pub fn new(t: T, value: V, interpolation: Interpolation<T>) -> Self[src]

Create a new key.

Trait Implementations

impl<T: Copy, V: Copy> Copy for Key<T, V>[src]

impl<T: Clone, V: Clone> Clone for Key<T, V>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug, V: Debug> Debug for Key<T, V>[src]

Auto Trait Implementations

impl<T, V> Send for Key<T, V> where
    T: Send,
    V: Send

impl<T, V> Sync for Key<T, V> where
    T: Sync,
    V: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.