pub trait CurveContentStatic: Send + Sync + 'static {
    type Keyframe: 'static;

    // Required method
    fn curve_content_len(&self) -> usize;
}
Expand description

The lifetime-irrelevant part of the CurveContent interface.

Required Associated Types§

source

type Keyframe: 'static

Keyframe content type.

Required Methods§

source

fn curve_content_len(&self) -> usize

Track length.

Implementations on Foreign Types§

source§

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

source§

impl<T: Send + Sync + 'static> CurveContentStatic for Box<[T]>

Implementors§