pub trait VectorUnit:
Sealed
+ Copy
+ Debug
+ PartialEq
+ Add<Output = Self>
+ Sub<Output = Self>
+ Neg<Output = Self>
+ Mul<f64, Output = Self> {
// Required methods
fn si(self) -> f64;
fn from_si(value: f64) -> Self;
}Expand description
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".