pub trait VectorCommon: Sized + Debug {
type T: Scalar;
type C: Context;
type Inner;
// Required method
fn inner(&self) -> &Self::Inner;
}Expand description
Common interface for vector-like types, providing access to scalar type, context, and inner representation.
Required Associated Types§
Required Methods§
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.