pub struct PhysSeg {
pub start: u64,
pub end: u64,
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: u64§end: u64§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 !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