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