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

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

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, V>

Interpolation mode.

Implementations

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

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

Create a new key.

Trait Implementations

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

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

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

impl<'de, T, V> Deserialize<'de> for Key<T, V> where
    T: Deserialize<'de>,
    V: Deserialize<'de>, 
[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,