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