[][src]Struct google_games1::RoomP2PStatus

pub struct RoomP2PStatus {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub participant_id: Option<String>,
    pub error: Option<String>,
    pub error_reason: Option<String>,
    pub unreliable_roundtrip_latency_millis: Option<i32>,
    pub connection_setup_latency_millis: Option<i32>,
}

This is a JSON template for an update on the status of a peer in a room.

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

Fields

status: Option<String>

The status of the peer in the room. Possible values are:

  • "CONNECTION_ESTABLISHED" - The client established a P2P connection with the peer.
  • "CONNECTION_FAILED" - The client failed to establish directed presence with the peer.
kind: Option<String>

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

participant_id: Option<String>

The ID of the participant.

error: Option<String>

The error code in event of a failure. Possible values are:

  • "P2P_FAILED" - The client failed to establish a P2P connection with the peer.
  • "PRESENCE_FAILED" - The client failed to register to receive P2P connections.
  • "RELAY_SERVER_FAILED" - The client received an error when trying to use the relay server to establish a P2P connection with the peer.
error_reason: Option<String>

More detailed diagnostic message returned in event of a failure.

unreliable_roundtrip_latency_millis: Option<i32>

The amount of time in milliseconds it took to send packets back and forth on the unreliable channel with this peer.

connection_setup_latency_millis: Option<i32>

The amount of time in milliseconds it took to establish connections with this peer.

Trait Implementations

impl Part for RoomP2PStatus[src]

impl Default for RoomP2PStatus[src]

impl Clone for RoomP2PStatus[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for RoomP2PStatus[src]

impl Serialize for RoomP2PStatus[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]