pub struct StopMatchBackfillRequest {
pub ticket_id: Option<TicketId>,
pub game_session_arn: Option<GameSessionArn>,
pub matchmaking_configuration_arn: Option<MatchmakingConfigurationArn>,
}Expand description
This data type is used to cancel a matchmaking backfill request. The information is communicated to the GameLift service in a stop_match_backfill call.
Fields§
§ticket_id: Option<TicketId>Unique identifier of the backfill request ticket to be canceled.
game_session_arn: Option<GameSessionArn>Unique game session identifier associated with the request being canceled.
matchmaking_configuration_arn: Option<MatchmakingConfigurationArn>Unique identifier of the matchmaker this request was sent to.
Trait Implementations§
Source§impl Clone for StopMatchBackfillRequest
impl Clone for StopMatchBackfillRequest
Source§fn clone(&self) -> StopMatchBackfillRequest
fn clone(&self) -> StopMatchBackfillRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StopMatchBackfillRequest
impl Debug for StopMatchBackfillRequest
Source§impl Default for StopMatchBackfillRequest
impl Default for StopMatchBackfillRequest
Source§fn default() -> StopMatchBackfillRequest
fn default() -> StopMatchBackfillRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StopMatchBackfillRequest
impl RefUnwindSafe for StopMatchBackfillRequest
impl Send for StopMatchBackfillRequest
impl Sync for StopMatchBackfillRequest
impl Unpin for StopMatchBackfillRequest
impl UnwindSafe for StopMatchBackfillRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more