pub struct FrameEntryOwner {
pub mapped_pa: usize,
pub size: usize,
pub prop: PageProperty,
pub is_tracked: bool,
}Fields§
§mapped_pa: usize§size: usize§prop: PageProperty§is_tracked: boolWhether the frame is ref-counted (Tracked) or raw MMIO (Untracked).
Determines whether the slot at frame_to_index(mapped_pa) carries a
non-zero refcount and participates in metaregion_sound’s rc check.
Auto Trait Implementations§
impl Freeze for FrameEntryOwner
impl RefUnwindSafe for FrameEntryOwner
impl Send for FrameEntryOwner
impl Sync for FrameEntryOwner
impl Unpin for FrameEntryOwner
impl UnsafeUnpin for FrameEntryOwner
impl UnwindSafe for FrameEntryOwner
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