pub struct EccErrorCounts {
pub device_memory: u64,
pub l1_cache: u64,
pub l2_cache: u64,
pub register_file: u64,
}
Expand description
Detailed ECC error counts for a device.
Fields§
§device_memory: u64
§l1_cache: u64
§l2_cache: u64
§register_file: u64
Trait Implementations§
Source§impl Clone for EccErrorCounts
impl Clone for EccErrorCounts
Source§fn clone(&self) -> EccErrorCounts
fn clone(&self) -> EccErrorCounts
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 EccErrorCounts
impl Debug for EccErrorCounts
Source§impl From<nvmlEccErrorCounts_st> for EccErrorCounts
impl From<nvmlEccErrorCounts_st> for EccErrorCounts
Source§fn from(struct_: nvmlEccErrorCounts_t) -> Self
fn from(struct_: nvmlEccErrorCounts_t) -> Self
Converts to this type from the input type.
Source§impl Hash for EccErrorCounts
impl Hash for EccErrorCounts
Source§impl PartialEq for EccErrorCounts
impl PartialEq for EccErrorCounts
impl Eq for EccErrorCounts
impl StructuralPartialEq for EccErrorCounts
Auto Trait Implementations§
impl Freeze for EccErrorCounts
impl RefUnwindSafe for EccErrorCounts
impl Send for EccErrorCounts
impl Sync for EccErrorCounts
impl Unpin for EccErrorCounts
impl UnwindSafe for EccErrorCounts
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