pub struct PrefaultResult {
pub requested_bytes: usize,
pub pages_touched: usize,
}Expand description
Bounded result of an explicit off-thread prefault operation.
Fields§
§requested_bytes: usizeRequested logical byte count.
pages_touched: usizeNumber of distinct covered page locations touched.
Trait Implementations§
Source§impl Clone for PrefaultResult
impl Clone for PrefaultResult
Source§fn clone(&self) -> PrefaultResult
fn clone(&self) -> PrefaultResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PrefaultResult
Source§impl Debug for PrefaultResult
impl Debug for PrefaultResult
impl Eq for PrefaultResult
Source§impl PartialEq for PrefaultResult
impl PartialEq for PrefaultResult
impl StructuralPartialEq for PrefaultResult
Auto Trait Implementations§
impl Freeze for PrefaultResult
impl RefUnwindSafe for PrefaultResult
impl Send for PrefaultResult
impl Sync for PrefaultResult
impl Unpin for PrefaultResult
impl UnsafeUnpin for PrefaultResult
impl UnwindSafe for PrefaultResult
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