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