pub trait HierarchicalLevel: TableLevel {
type NextLevel: TableLevel;
}
Expand description
Tables of levels that implement HierarchicalLevel
are page tables whose entries are other
tables, as opposed to actual frames (like in P1s). This makes accessing the next level
type-safe, as the next_table
methods are only implemented for tables that have child tables.