pub trait DefaultWithLen {
// Required method
fn default_with_len(len: usize) -> Self;
}
Expand description
Bound on GridSolver
type parameters
Required Methods§
Sourcefn default_with_len(len: usize) -> Self
fn default_with_len(len: usize) -> Self
Construct with default elements of given length; panic on failure
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.