pub struct EccSramErrorStatus {
pub aggregate_unc_parity: u64,
pub aggregate_unc_secded: u64,
pub aggregate_corrected: u64,
pub volatile_unc_parity: u64,
pub volatile_unc_secded: u64,
pub volatile_corrected: u64,
pub aggregate_unc_bucket_l2: u64,
pub aggregate_unc_bucket_sm: u64,
pub aggregate_unc_bucket_pcie: u64,
pub aggregate_unc_bucket_mcu: u64,
pub aggregate_unc_bucket_other: u64,
pub threshold_exceeded: bool,
}Fields§
§aggregate_unc_parity: u64§aggregate_unc_secded: u64§aggregate_corrected: u64§volatile_unc_parity: u64§volatile_unc_secded: u64§volatile_corrected: u64§aggregate_unc_bucket_l2: u64§aggregate_unc_bucket_sm: u64§aggregate_unc_bucket_pcie: u64§aggregate_unc_bucket_mcu: u64§aggregate_unc_bucket_other: u64§threshold_exceeded: boolTrait Implementations§
Source§impl Clone for EccSramErrorStatus
impl Clone for EccSramErrorStatus
Source§fn clone(&self) -> EccSramErrorStatus
fn clone(&self) -> EccSramErrorStatus
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 moreSource§impl Debug for EccSramErrorStatus
impl Debug for EccSramErrorStatus
Source§impl From<nvmlEccSramErrorStatus_v1_t> for EccSramErrorStatus
impl From<nvmlEccSramErrorStatus_v1_t> for EccSramErrorStatus
Source§fn from(value: nvmlEccSramErrorStatus_t) -> Self
fn from(value: nvmlEccSramErrorStatus_t) -> Self
Converts to this type from the input type.
Source§impl Hash for EccSramErrorStatus
impl Hash for EccSramErrorStatus
Source§impl PartialEq for EccSramErrorStatus
impl PartialEq for EccSramErrorStatus
Source§fn eq(&self, other: &EccSramErrorStatus) -> bool
fn eq(&self, other: &EccSramErrorStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EccSramErrorStatus
impl Eq for EccSramErrorStatus
impl StructuralPartialEq for EccSramErrorStatus
Auto Trait Implementations§
impl Freeze for EccSramErrorStatus
impl RefUnwindSafe for EccSramErrorStatus
impl Send for EccSramErrorStatus
impl Sync for EccSramErrorStatus
impl Unpin for EccSramErrorStatus
impl UnsafeUnpin for EccSramErrorStatus
impl UnwindSafe for EccSramErrorStatus
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