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;
}

Required methods

Implementors