Trait Value

Source
pub trait Value:
    ScalarOperand
    + Add
    + Zero
    + Float
    + NumCast
    + PartialOrd
    + Copy
    + Debug
    + Sync
    + Send { }
Expand description

Numeric value trait, defines the types that can be used for the value of each dimension in a data point.

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> Value for T