pub struct CreateMatchmakingConfigurationOutput {
pub configuration: Option<MatchmakingConfiguration>,
}Expand description
Represents the returned data in response to a request action.
Fields§
§configuration: Option<MatchmakingConfiguration>Object that describes the newly created matchmaking configuration.
Trait Implementations§
Source§impl Clone for CreateMatchmakingConfigurationOutput
impl Clone for CreateMatchmakingConfigurationOutput
Source§fn clone(&self) -> CreateMatchmakingConfigurationOutput
fn clone(&self) -> CreateMatchmakingConfigurationOutput
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 Default for CreateMatchmakingConfigurationOutput
impl Default for CreateMatchmakingConfigurationOutput
Source§fn default() -> CreateMatchmakingConfigurationOutput
fn default() -> CreateMatchmakingConfigurationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateMatchmakingConfigurationOutput
impl<'de> Deserialize<'de> for CreateMatchmakingConfigurationOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateMatchmakingConfigurationOutput
impl PartialEq for CreateMatchmakingConfigurationOutput
Source§fn eq(&self, other: &CreateMatchmakingConfigurationOutput) -> bool
fn eq(&self, other: &CreateMatchmakingConfigurationOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateMatchmakingConfigurationOutput
Auto Trait Implementations§
impl Freeze for CreateMatchmakingConfigurationOutput
impl RefUnwindSafe for CreateMatchmakingConfigurationOutput
impl Send for CreateMatchmakingConfigurationOutput
impl Sync for CreateMatchmakingConfigurationOutput
impl Unpin for CreateMatchmakingConfigurationOutput
impl UnwindSafe for CreateMatchmakingConfigurationOutput
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