Struct google_games1::PeerChannelDiagnostics[][src]

pub struct PeerChannelDiagnostics {
    pub bytes_received: Option<AggregateStats>,
    pub kind: Option<String>,
    pub bytes_sent: Option<AggregateStats>,
    pub num_send_failures: Option<i32>,
    pub num_messages_lost: Option<i32>,
    pub num_messages_received: Option<i32>,
    pub num_messages_sent: Option<i32>,
    pub roundtrip_latency_millis: Option<AggregateStats>,
}

This is a JSON template for peer channel diagnostics.

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

Fields

Number of bytes received.

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

Number of bytes sent.

Number of send failures.

Number of messages lost.

Number of messages received.

Number of messages sent.

Roundtrip latency stats in milliseconds.

Trait Implementations

impl Default for PeerChannelDiagnostics
[src]

Returns the "default value" for a type. Read more

impl Clone for PeerChannelDiagnostics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PeerChannelDiagnostics
[src]

Formats the value using the given formatter. Read more

impl Part for PeerChannelDiagnostics
[src]

Auto Trait Implementations