Struct gaviota_sys::TB_STATS[][src]

#[repr(C)]pub struct TB_STATS {
    pub wdl_easy_hits: [c_ulong; 2],
    pub wdl_hard_prob: [c_ulong; 2],
    pub wdl_soft_prob: [c_ulong; 2],
    pub wdl_cachesize: size_t,
    pub wdl_occupancy: f64,
    pub dtm_easy_hits: [c_ulong; 2],
    pub dtm_hard_prob: [c_ulong; 2],
    pub dtm_soft_prob: [c_ulong; 2],
    pub dtm_cachesize: size_t,
    pub dtm_occupancy: f64,
    pub total_hits: [c_ulong; 2],
    pub memory_hits: [c_ulong; 2],
    pub drive_hits: [c_ulong; 2],
    pub drive_miss: [c_ulong; 2],
    pub bytes_read: [c_ulong; 2],
    pub files_opened: c_ulong,
    pub memory_efficiency: f64,
}

Fields

wdl_easy_hits: [c_ulong; 2]wdl_hard_prob: [c_ulong; 2]wdl_soft_prob: [c_ulong; 2]wdl_cachesize: size_twdl_occupancy: f64dtm_easy_hits: [c_ulong; 2]dtm_hard_prob: [c_ulong; 2]dtm_soft_prob: [c_ulong; 2]dtm_cachesize: size_tdtm_occupancy: f64total_hits: [c_ulong; 2]memory_hits: [c_ulong; 2]drive_hits: [c_ulong; 2]drive_miss: [c_ulong; 2]bytes_read: [c_ulong; 2]files_opened: c_ulongmemory_efficiency: f64

Trait Implementations

impl Clone for TB_STATS[src]

impl Copy for TB_STATS[src]

impl Debug for TB_STATS[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> 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.