pub trait CurveContentBorrow<'a>: CurveContentStatic {
    type KeyframeRef: Borrow<Self::Keyframe>;

    // Required method
    fn curve_content_get(&'a self, k: usize) -> Self::KeyframeRef;
}
Expand description

Provided borrowed access to the keyframe contents.

Required Associated Types§

source

type KeyframeRef: Borrow<Self::Keyframe>

Borrow of keyframe contents.

Required Methods§

source

fn curve_content_get(&'a self, k: usize) -> Self::KeyframeRef

Get keyframe at specific index.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, T, O> CurveContentBorrow<'a> for BitBox<T, O>
where T: BitStore + Send + Sync + 'static, O: BitOrder + Send + Sync + 'static,

source§

impl<'a, T: Send + Sync + 'static> CurveContentBorrow<'a> for Box<[T]>

Implementors§