[][src]Struct google_games1::AggregateStats

pub struct AggregateStats {
    pub count: Option<String>,
    pub max: Option<String>,
    pub kind: Option<String>,
    pub sum: Option<String>,
    pub min: Option<String>,
}

This is a JSON template for aggregate stats.

This type is not used in any activity, and only used as part of another schema.

Fields

count: Option<String>

The number of messages sent between a pair of peers.

max: Option<String>

The maximum amount.

kind: Option<String>

Uniquely identifies the type of this resource. Value is always the fixed string games#aggregateStats.

sum: Option<String>

The total number of bytes sent for messages between a pair of peers.

min: Option<String>

The minimum amount.

Trait Implementations

impl Clone for AggregateStats[src]

impl Debug for AggregateStats[src]

impl Default for AggregateStats[src]

impl<'de> Deserialize<'de> for AggregateStats[src]

impl Part for AggregateStats[src]

impl Serialize for AggregateStats[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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<T> Typeable for T where
    T: Any