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