pub trait FastSetBuilder<T> {
// Required methods
fn new() -> Self;
fn with_capacity(capacity: usize) -> Self;
fn build<const N: usize>(array: [T; N]) -> Self;
}
Expand description
Convenience methods to contruct a FastSet
.
Required Methods§
fn new() -> Self
fn with_capacity(capacity: usize) -> Self
fn build<const N: usize>(array: [T; N]) -> Self
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.