pub trait SmallAlphabet:
Copy
+ Ord
+ Into<usize> {
const SIZE_LOG_2: usize;
const SIZE: usize = _;
// Required method
fn from_usize(val: usize) -> Self;
}Required Associated Constants§
const SIZE_LOG_2: usize
Provided Associated Constants§
Required Methods§
fn from_usize(val: usize) -> 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.