pub trait StaticSize:
Copy
+ Eq
+ PartialEq
+ Display {
const SIZE: usize;
const PRETTY_NAME: &'static str;
const INSTANCE: Self;
}
Expand description
A statically known page size.
Required Associated Constants§
const PRETTY_NAME: &'static str
const INSTANCE: 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.