pub struct MatchmakingFoundEventData {
pub queue_id: String,
pub timeout_ms: i64,
}Expand description
MatchmakingFoundEventData
JSON schema
{
"title": "MatchmakingFoundEventData",
"type": "object",
"required": [
"queueId",
"timeoutMs"
],
"properties": {
"queueId": {
"type": "string"
},
"timeoutMs": {
"type": "integer"
}
}
}Fields§
§queue_id: String§timeout_ms: i64Implementations§
Source§impl MatchmakingFoundEventData
impl MatchmakingFoundEventData
pub fn builder() -> MatchmakingFoundEventData
Trait Implementations§
Source§impl Clone for MatchmakingFoundEventData
impl Clone for MatchmakingFoundEventData
Source§fn clone(&self) -> MatchmakingFoundEventData
fn clone(&self) -> MatchmakingFoundEventData
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 MatchmakingFoundEventData
impl Debug for MatchmakingFoundEventData
Source§impl<'de> Deserialize<'de> for MatchmakingFoundEventData
impl<'de> Deserialize<'de> for MatchmakingFoundEventData
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 From<MatchmakingFoundEventData> for MatchmakingFoundEventData
impl From<MatchmakingFoundEventData> for MatchmakingFoundEventData
Source§fn from(value: MatchmakingFoundEventData) -> Self
fn from(value: MatchmakingFoundEventData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<MatchmakingFoundEventData> for MatchmakingFoundEventData
impl TryFrom<MatchmakingFoundEventData> for MatchmakingFoundEventData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MatchmakingFoundEventData) -> Result<Self, ConversionError>
fn try_from(value: MatchmakingFoundEventData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MatchmakingFoundEventData
impl RefUnwindSafe for MatchmakingFoundEventData
impl Send for MatchmakingFoundEventData
impl Sync for MatchmakingFoundEventData
impl Unpin for MatchmakingFoundEventData
impl UnsafeUnpin for MatchmakingFoundEventData
impl UnwindSafe for MatchmakingFoundEventData
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