pub trait Cast<D: Scalar> { // Required method fn cast(self) -> D; }
Trait for casting between scalar types.
Casts self to target type D.