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