Struct nvml_wrapper::struct_wrappers::device::EccErrorCounts
source · 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
source§fn eq(&self, other: &EccErrorCounts) -> bool
fn eq(&self, other: &EccErrorCounts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for EccErrorCounts
impl StructuralPartialEq for EccErrorCounts
Auto Trait Implementations§
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