pub trait Interpolate<S> {
// Required method
fn interpolate(&self, other: &Self, amount: S) -> Self;
}Expand description
Required Methods§
Sourcefn interpolate(&self, other: &Self, amount: S) -> Self
fn interpolate(&self, other: &Self, amount: S) -> Self
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.