Trait hal_core::mem::page::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

Object Safety§

This trait is not object safe.

Implementors§