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