[][src]Struct thingvellir::ShardStats

pub struct ShardStats {
    pub executions_complete: u64,
    pub executions_pending: usize,
    pub keys_lru_evicted: u64,
    pub keys_ttl_evicted: u64,
    pub keys_taken: u64,
    pub loads_in_progress: usize,
    pub loads_failed: u64,
    pub loads_not_found: u64,
    pub loads_complete: u64,
    pub data_size: usize,
    pub expiring_keys: usize,
}

Fields

executions_complete: u64executions_pending: usizekeys_lru_evicted: u64keys_ttl_evicted: u64keys_taken: u64loads_in_progress: usizeloads_failed: u64loads_not_found: u64loads_complete: u64data_size: usizeexpiring_keys: usize

Methods

impl ShardStats[src]

pub fn merge_stats<S: IntoIterator<Item = ShardStats>>(stats: S) -> Self[src]

Trait Implementations

impl Clone for ShardStats[src]

impl Debug for ShardStats[src]

impl Default for ShardStats[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,