pub trait LaggedAnim<T: Clone>: Sized + 'static {
// Required method
fn lagged<E>(
&mut self,
lag_ratio: f64,
anim_func: impl FnMut(&mut T) -> E,
) -> Lagged<T, E>
where E: Eval<Output = T> + 'static;
}Expand description
Required Methods§
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.