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