pub struct MatchmakerComponentListResponse {
pub count: i32,
pub data: Box<MatchmakerComponentResponse>,
}Fields§
§count: i32Number of matchmaker components owned by the user.
data: Box<MatchmakerComponentResponse>Implementations§
Source§impl MatchmakerComponentListResponse
impl MatchmakerComponentListResponse
pub fn new( count: i32, data: MatchmakerComponentResponse, ) -> MatchmakerComponentListResponse
Trait Implementations§
Source§impl Clone for MatchmakerComponentListResponse
impl Clone for MatchmakerComponentListResponse
Source§fn clone(&self) -> MatchmakerComponentListResponse
fn clone(&self) -> MatchmakerComponentListResponse
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 MatchmakerComponentListResponse
impl Default for MatchmakerComponentListResponse
Source§fn default() -> MatchmakerComponentListResponse
fn default() -> MatchmakerComponentListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchmakerComponentListResponse
impl<'de> Deserialize<'de> for MatchmakerComponentListResponse
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 MatchmakerComponentListResponse
impl PartialEq for MatchmakerComponentListResponse
Source§fn eq(&self, other: &MatchmakerComponentListResponse) -> bool
fn eq(&self, other: &MatchmakerComponentListResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MatchmakerComponentListResponse
Auto Trait Implementations§
impl Freeze for MatchmakerComponentListResponse
impl RefUnwindSafe for MatchmakerComponentListResponse
impl Send for MatchmakerComponentListResponse
impl Sync for MatchmakerComponentListResponse
impl Unpin for MatchmakerComponentListResponse
impl UnwindSafe for MatchmakerComponentListResponse
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