Skip to main content

Interpolatable

Trait Interpolatable 

Source
pub trait Interpolatable:
    Copy
    + Add<Output = Self>
    + Sub<Output = Self>
    + Mul<f64, Output = Self> { }
Expand description

Value requirements for synchronization interpolation.

Types must support affine interpolation via +, -, and scalar multiply by f64.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Interpolatable for f64

Implementors§