pub enum KernelCommand {
PageDataReq(ObjID, ObjectRange, PagerFlags),
ObjectInfoReq(ObjID),
ObjectEvict(ObjectEvictInfo),
ObjectDel(ObjID),
ObjectCreate(ObjID, ObjectInfo),
DramPages(PhysRange),
}
Variants§
PageDataReq(ObjID, ObjectRange, PagerFlags)
ObjectInfoReq(ObjID)
ObjectEvict(ObjectEvictInfo)
ObjectDel(ObjID)
ObjectCreate(ObjID, ObjectInfo)
DramPages(PhysRange)
Trait Implementations§
Source§impl Clone for KernelCommand
impl Clone for KernelCommand
Source§fn clone(&self) -> KernelCommand
fn clone(&self) -> KernelCommand
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for KernelCommand
impl Debug for KernelCommand
Source§impl Ord for KernelCommand
impl Ord for KernelCommand
Source§fn cmp(&self, other: &KernelCommand) -> Ordering
fn cmp(&self, other: &KernelCommand) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for KernelCommand
impl PartialEq for KernelCommand
Source§impl PartialOrd for KernelCommand
impl PartialOrd for KernelCommand
impl Copy for KernelCommand
impl Eq for KernelCommand
impl StructuralPartialEq for KernelCommand
Auto Trait Implementations§
impl Freeze for KernelCommand
impl ObjSafe for KernelCommand
impl RefUnwindSafe for KernelCommand
impl Send for KernelCommand
impl Sync for KernelCommand
impl Unpin for KernelCommand
impl UnwindSafe for KernelCommand
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