pub struct MatchmakingListRequest {
pub command_id: Value,
pub message_id: String,
pub type_: Value,
}Expand description
MatchmakingListRequest
JSON schema
{
"title": "MatchmakingListRequest",
"type": "object",
"required": [
"commandId",
"messageId",
"type"
],
"properties": {
"commandId": {
"const": "matchmaking/list"
},
"messageId": {
"type": "string"
},
"type": {
"const": "request"
}
},
"tachyon": {
"scopes": [
"tachyon.lobby"
],
"source": "user",
"target": "server"
}
}Fields§
§command_id: Value§message_id: String§type_: ValueImplementations§
Source§impl MatchmakingListRequest
impl MatchmakingListRequest
pub fn builder() -> MatchmakingListRequest
Trait Implementations§
Source§impl Clone for MatchmakingListRequest
impl Clone for MatchmakingListRequest
Source§fn clone(&self) -> MatchmakingListRequest
fn clone(&self) -> MatchmakingListRequest
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 MatchmakingListRequest
impl Debug for MatchmakingListRequest
Source§impl<'de> Deserialize<'de> for MatchmakingListRequest
impl<'de> Deserialize<'de> for MatchmakingListRequest
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<MatchmakingListRequest> for MatchmakingListRequest
impl From<MatchmakingListRequest> for MatchmakingListRequest
Source§fn from(value: MatchmakingListRequest) -> Self
fn from(value: MatchmakingListRequest) -> Self
Converts to this type from the input type.
Source§impl Serialize for MatchmakingListRequest
impl Serialize for MatchmakingListRequest
Source§impl TryFrom<MatchmakingListRequest> for MatchmakingListRequest
impl TryFrom<MatchmakingListRequest> for MatchmakingListRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MatchmakingListRequest) -> Result<Self, ConversionError>
fn try_from(value: MatchmakingListRequest) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MatchmakingListRequest
impl RefUnwindSafe for MatchmakingListRequest
impl Send for MatchmakingListRequest
impl Sync for MatchmakingListRequest
impl Unpin for MatchmakingListRequest
impl UnsafeUnpin for MatchmakingListRequest
impl UnwindSafe for MatchmakingListRequest
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