Struct nvml_wrapper::structs::device::RetiredPage
source · pub struct RetiredPage {
pub address: u64,
pub timestamp: u64,
}
Expand description
Returned from Device.retired_pages()
Fields§
§address: u64
The hardware address of the page that was retired.
Note that this does not match the virtual address used in CUDA but does match the address information in XID 63.
timestamp: u64
The retirement timestamp.
Trait Implementations§
source§impl Clone for RetiredPage
impl Clone for RetiredPage
source§fn clone(&self) -> RetiredPage
fn clone(&self) -> RetiredPage
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 RetiredPage
impl Debug for RetiredPage
source§impl Hash for RetiredPage
impl Hash for RetiredPage
source§impl PartialEq for RetiredPage
impl PartialEq for RetiredPage
source§fn eq(&self, other: &RetiredPage) -> bool
fn eq(&self, other: &RetiredPage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RetiredPage
impl StructuralPartialEq for RetiredPage
Auto Trait Implementations§
impl RefUnwindSafe for RetiredPage
impl Send for RetiredPage
impl Sync for RetiredPage
impl Unpin for RetiredPage
impl UnwindSafe for RetiredPage
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