pub trait IntoIdx<D: Dim>:
Sized
+ Copy
+ Debug {
// Required method
fn into_idx(self) -> D::Idx;
}
Expand description
A type that can be transformed into the standard index of dimension D
.
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.