pub struct PrivateMassQuoteResponse {
pub errors: Option<Vec<PrivateMassQuoteResponseErrors>>,
pub errors_count: Option<Value>,
pub orders: Option<Vec<Order>>,
pub pending_requests: Option<Vec<PrivateMassQuoteResponsePendingRequests>>,
pub pending_requests_count: Option<Value>,
pub trades: Option<Vec<UserTrade>>,
}Fields§
§errors: Option<Vec<PrivateMassQuoteResponseErrors>>§errors_count: Option<Value>§orders: Option<Vec<Order>>§pending_requests: Option<Vec<PrivateMassQuoteResponsePendingRequests>>§pending_requests_count: Option<Value>§trades: Option<Vec<UserTrade>>Trait Implementations§
Source§impl Clone for PrivateMassQuoteResponse
impl Clone for PrivateMassQuoteResponse
Source§fn clone(&self) -> PrivateMassQuoteResponse
fn clone(&self) -> PrivateMassQuoteResponse
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 PrivateMassQuoteResponse
impl Debug for PrivateMassQuoteResponse
Source§impl Default for PrivateMassQuoteResponse
impl Default for PrivateMassQuoteResponse
Source§fn default() -> PrivateMassQuoteResponse
fn default() -> PrivateMassQuoteResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateMassQuoteResponse
impl<'de> Deserialize<'de> for PrivateMassQuoteResponse
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 PrivateMassQuoteResponse
impl PartialEq for PrivateMassQuoteResponse
Source§fn eq(&self, other: &PrivateMassQuoteResponse) -> bool
fn eq(&self, other: &PrivateMassQuoteResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivateMassQuoteResponse
impl Serialize for PrivateMassQuoteResponse
impl StructuralPartialEq for PrivateMassQuoteResponse
Auto Trait Implementations§
impl Freeze for PrivateMassQuoteResponse
impl RefUnwindSafe for PrivateMassQuoteResponse
impl Send for PrivateMassQuoteResponse
impl Sync for PrivateMassQuoteResponse
impl Unpin for PrivateMassQuoteResponse
impl UnsafeUnpin for PrivateMassQuoteResponse
impl UnwindSafe for PrivateMassQuoteResponse
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