[][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 PartialEq<Player> for Player[src]

impl Default for Player[src]

impl Clone for Player[src]

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

Performs copy-assignment from source. Read more

impl Debug for Player[src]

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

impl Serialize for Player[src]

Auto Trait Implementations

impl Send for Player

impl Sync for Player

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self