Trait VelocityBound

Source
pub trait VelocityBound:
    Sized
    + Add<Self, Output = Self>
    + AddAssign
    + Sub<Output = Self>
    + SubAssign
    + Clone
    + Debug
    + Zero
    + Send
    + Sync
    + Mul<f64, Output = Self> { }
Available on crate feature cpu_os_threads only.
Expand description

Represents the velocity of a cell.

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> VelocityBound for T
where T: Sized + Add<Self, Output = Self> + AddAssign + Sub<Output = Self> + SubAssign + Clone + Debug + Zero + Send + Sync + Mul<f64, Output = Self>,