pub trait QuantityArray2<T> {
// Required methods
fn from_raw(raw: ArrayView2<'_, f64>, unit: T) -> Self;
fn to_raw(&self) -> Array2<f64>;
fn to(&self, unit: T) -> Array2<f64>;
}Required Methods§
fn from_raw(raw: ArrayView2<'_, f64>, unit: T) -> Self
fn to_raw(&self) -> Array2<f64>
fn to(&self, unit: T) -> Array2<f64>
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.