pub trait Array<T>: IntoIterator<Item = T> {
type Dim: Dim;
// Required method
fn dim(&self) -> Self::Dim;
}Expand description
Represents either [T; N] or Vec<T>
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".