pub struct MyPreventedMatchesResponse {
pub id: Option<String>,
pub status: Option<i64>,
pub result: Option<Vec<MyPreventedMatchesResponseResultInner>>,
pub rate_limits: Option<Vec<RateLimits>>,
}Fields§
§id: Option<String>§status: Option<i64>§result: Option<Vec<MyPreventedMatchesResponseResultInner>>§rate_limits: Option<Vec<RateLimits>>Implementations§
Source§impl MyPreventedMatchesResponse
impl MyPreventedMatchesResponse
pub fn new() -> MyPreventedMatchesResponse
Trait Implementations§
Source§impl Clone for MyPreventedMatchesResponse
impl Clone for MyPreventedMatchesResponse
Source§fn clone(&self) -> MyPreventedMatchesResponse
fn clone(&self) -> MyPreventedMatchesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MyPreventedMatchesResponse
impl Debug for MyPreventedMatchesResponse
Source§impl Default for MyPreventedMatchesResponse
impl Default for MyPreventedMatchesResponse
Source§fn default() -> MyPreventedMatchesResponse
fn default() -> MyPreventedMatchesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MyPreventedMatchesResponse
impl<'de> Deserialize<'de> for MyPreventedMatchesResponse
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 MyPreventedMatchesResponse
impl PartialEq for MyPreventedMatchesResponse
Source§fn eq(&self, other: &MyPreventedMatchesResponse) -> bool
fn eq(&self, other: &MyPreventedMatchesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MyPreventedMatchesResponse
Auto Trait Implementations§
impl Freeze for MyPreventedMatchesResponse
impl RefUnwindSafe for MyPreventedMatchesResponse
impl Send for MyPreventedMatchesResponse
impl Sync for MyPreventedMatchesResponse
impl Unpin for MyPreventedMatchesResponse
impl UnsafeUnpin for MyPreventedMatchesResponse
impl UnwindSafe for MyPreventedMatchesResponse
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