pub enum PagerRequest {
Ready,
CopyUserPhys {
target_object: ObjID,
offset: usize,
len: usize,
phys: PhysRange,
write_phys: bool,
},
RegisterPhys(u64, u64),
}
Variants§
Trait Implementations§
Source§impl Clone for PagerRequest
impl Clone for PagerRequest
Source§fn clone(&self) -> PagerRequest
fn clone(&self) -> PagerRequest
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 PagerRequest
impl Debug for PagerRequest
Source§impl Ord for PagerRequest
impl Ord for PagerRequest
Source§fn cmp(&self, other: &PagerRequest) -> Ordering
fn cmp(&self, other: &PagerRequest) -> 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 PagerRequest
impl PartialEq for PagerRequest
Source§impl PartialOrd for PagerRequest
impl PartialOrd for PagerRequest
impl Copy for PagerRequest
impl Eq for PagerRequest
impl StructuralPartialEq for PagerRequest
Auto Trait Implementations§
impl Freeze for PagerRequest
impl ObjSafe for PagerRequest
impl RefUnwindSafe for PagerRequest
impl Send for PagerRequest
impl Sync for PagerRequest
impl Unpin for PagerRequest
impl UnwindSafe for PagerRequest
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