pub struct PrivateGetUserTradesHistoryResponse {
pub has_more: bool,
pub trades: Vec<UserTrade>,
}Fields§
§has_more: bool§trades: Vec<UserTrade>Trait Implementations§
Source§impl Clone for PrivateGetUserTradesHistoryResponse
impl Clone for PrivateGetUserTradesHistoryResponse
Source§fn clone(&self) -> PrivateGetUserTradesHistoryResponse
fn clone(&self) -> PrivateGetUserTradesHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PrivateGetUserTradesHistoryResponse
impl Default for PrivateGetUserTradesHistoryResponse
Source§fn default() -> PrivateGetUserTradesHistoryResponse
fn default() -> PrivateGetUserTradesHistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateGetUserTradesHistoryResponse
impl<'de> Deserialize<'de> for PrivateGetUserTradesHistoryResponse
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 PrivateGetUserTradesHistoryResponse
impl PartialEq for PrivateGetUserTradesHistoryResponse
Source§fn eq(&self, other: &PrivateGetUserTradesHistoryResponse) -> bool
fn eq(&self, other: &PrivateGetUserTradesHistoryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateGetUserTradesHistoryResponse
Auto Trait Implementations§
impl Freeze for PrivateGetUserTradesHistoryResponse
impl RefUnwindSafe for PrivateGetUserTradesHistoryResponse
impl Send for PrivateGetUserTradesHistoryResponse
impl Sync for PrivateGetUserTradesHistoryResponse
impl Unpin for PrivateGetUserTradesHistoryResponse
impl UnwindSafe for PrivateGetUserTradesHistoryResponse
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