hal_core::mem::page

Trait StaticSize

Source
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§

Source

const SIZE: usize

The size (in bytes) of this page.

Source

const PRETTY_NAME: &'static str

Source

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.

Implementors§