Trait Concentration

pub trait Concentration:
    Sized
    + Add<Output = Self>
    + Mul<f64, Output = Self>
    + Send
    + Sync
    + Zero { }
Expand description

Preliminary traits to model external Concentration in respective Voxel.

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§

§

impl<T> Concentration for T
where T: Mul<f64, Output = T> + Add<Output = T> + Send + Sync + Zero,