pub struct PhysSeg {
pub start: usize,
pub end: usize,
pub first_page: usize,
pub free_queues: Arc<Mutex<[[[IndexSet<Arc<VmPage>, FxBuildHasher>; 13]; 3]; 2]>>,
}Expand description
Implementation of vm_phys_seg structure.
Fields§
§start: usize§end: usize§first_page: usize§free_queues: Arc<Mutex<[[[IndexSet<Arc<VmPage>, FxBuildHasher>; 13]; 3]; 2]>>Auto Trait Implementations§
impl Freeze for PhysSeg
impl !RefUnwindSafe for PhysSeg
impl Send for PhysSeg
impl Sync for PhysSeg
impl Unpin for PhysSeg
impl UnsafeUnpin for PhysSeg
impl !UnwindSafe for PhysSeg
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more