[][src]Enum dbl::types::ShardStats

pub enum ShardStats {
    Cumulative {
        server_count: u64,
        shard_count: Option<u64>,
    },
    Shard {
        server_count: u64,
        shard_id: u64,
        shard_count: u64,
    },
    Shards {
        shards: Vec<u64>,
    },
}

Used to update one or more sharding stats.

Variants

Cumulative

Fields of Cumulative

server_count: u64shard_count: Option<u64>
Shard

Fields of Shard

server_count: u64shard_id: u64shard_count: u64
Shards

Fields of Shards

shards: Vec<u64>

Trait Implementations

impl Debug for ShardStats[src]

impl Serialize for ShardStats[src]

Auto Trait Implementations

impl Send for ShardStats

impl Sync for ShardStats

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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