[][src]Struct rusoto_gamelift::MatchedPlayerSession

pub struct MatchedPlayerSession {
    pub player_id: Option<String>,
    pub player_session_id: Option<String>,
}

Represents a new player session that is created as a result of a successful FlexMatch match. A successful match automatically creates new player sessions for every player ID in the original matchmaking request.

When players connect to the match's game session, they must include both player ID and player session ID in order to claim their assigned player slot.

Fields

player_id: Option<String>

A unique identifier for a player

player_session_id: Option<String>

A unique identifier for a player session

Trait Implementations

impl Clone for MatchedPlayerSession[src]

impl Debug for MatchedPlayerSession[src]

impl Default for MatchedPlayerSession[src]

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

impl PartialEq<MatchedPlayerSession> for MatchedPlayerSession[src]

impl StructuralPartialEq for MatchedPlayerSession[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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.