[][src]Struct rusoto_gamelift::Player

pub struct Player {
    pub latency_in_ms: Option<HashMap<String, i64>>,
    pub player_attributes: Option<HashMap<String, AttributeValue>>,
    pub player_id: Option<String>,
    pub team: Option<String>,
}

Represents a player in matchmaking. When starting a matchmaking request, a player has a player ID, attributes, and may have latency data. Team information is added after a match has been successfully completed.

Fields

latency_in_ms: Option<HashMap<String, i64>>

Set of values, expressed in milliseconds, indicating the amount of latency that a player experiences when connected to AWS regions. If this property is present, FlexMatch considers placing the match only in regions for which latency is reported.

If a matchmaker has a rule that evaluates player latency, players must report latency in order to be matched. If no latency is reported in this scenario, FlexMatch assumes that no regions are available to the player and the ticket is not matchable.

player_attributes: Option<HashMap<String, AttributeValue>>

Collection of key:value pairs containing player information for use in matchmaking. Player attribute keys must match the playerAttributes used in a matchmaking rule set. Example: "PlayerAttributes": {"skill": {"N": "23"}, "gameMode": {"S": "deathmatch"}}.

player_id: Option<String>

Unique identifier for a player

team: Option<String>

Name of the team that the player is assigned to in a match. Team names are defined in a matchmaking rule set.

Trait Implementations

impl Clone for Player[src]

impl Default for Player[src]

impl PartialEq<Player> for Player[src]

impl Debug for Player[src]

impl Serialize for Player[src]

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

Auto Trait Implementations

impl Send for Player

impl Sync for Player

impl Unpin for Player

impl UnwindSafe for Player

impl RefUnwindSafe for Player

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self