[][src]Struct libzetta::zpool::vdev::ErrorStatistics

pub struct ErrorStatistics {
    pub read: u64,
    pub write: u64,
    pub checksum: u64,
}

Error statistics.

NOTE: Due to imperfections of our world number of errors limited to std::u64::MAX.

Fields

read: u64

I/O errors that occurred while issuing a read request

write: u64

I/O errors that occurred while issuing a write request

checksum: u64

Checksum errors, meaning the device returned corrupted data as the result of a read request

Trait Implementations

impl Clone for ErrorStatistics[src]

impl Debug for ErrorStatistics[src]

impl Default for ErrorStatistics[src]

impl Eq for ErrorStatistics[src]

impl PartialEq<ErrorStatistics> for ErrorStatistics[src]

impl StructuralEq for ErrorStatistics[src]

impl StructuralPartialEq for ErrorStatistics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.