Trait Transitionable

Source
pub trait Transitionable
where Self: Mul<f32, Output = Self> + Add<Output = Self> + PartialEq + Copy,
{ }

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.

Implementors§

Source§

impl<T: Mul<f32, Output = T> + Add<Output = T> + PartialEq + Copy> Transitionable for T