pub struct FrameEntry {
pub paddr: Paddr,
}Expand description
Per-Frame entry in the store. Represents one outstanding handle to
the slot at paddr — i.e., one unit of refcount in
regions.slot_owners[frame_to_index(paddr)].
Multiple FrameEntrys may share the same paddr; each contributes
+1 to that slot’s inner_perms.ref_count.
Fields§
§paddr: PaddrAuto Trait Implementations§
impl Freeze for FrameEntry
impl RefUnwindSafe for FrameEntry
impl Send for FrameEntry
impl Sync for FrameEntry
impl Unpin for FrameEntry
impl UnsafeUnpin for FrameEntry
impl UnwindSafe for FrameEntry
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