Trait riscv::paging::PTEIterableSlice
source · [−]pub trait PTEIterableSlice<T> {
fn to_pte_slice<'a>(&'a self) -> &'a [T];
fn to_pte_slice_mut<'a>(&'a mut self) -> &'a mut [T];
fn pte_index(&self, index: usize) -> &T;
fn pte_index_mut(&mut self, index: usize) -> &mut T;
}