pub trait IField: Copy {
type Shape: IShape;
// Required methods
fn offset(&self) -> usize;
fn shape(&self) -> Self::Shape;
}Expand description
Interface for field information.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".