pub trait DefaultLabelledArray<E, L>: LabelledArray<E, L>where
E: Default,{
// Required method
fn with_len(label: L, len: usize) -> Self;
}
Expand description
Trait for a labelled array with a default value.
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.