pub struct LastTradesResponse {
pub has_more: bool,
pub trades: Vec<LastTrade>,
}Expand description
Last trades response
Fields§
§has_more: boolWhether there are more trades available
trades: Vec<LastTrade>List of recent trades
Trait Implementations§
Source§impl Clone for LastTradesResponse
impl Clone for LastTradesResponse
Source§fn clone(&self) -> LastTradesResponse
fn clone(&self) -> LastTradesResponse
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 Debug for LastTradesResponse
impl Debug for LastTradesResponse
Source§impl<'de> Deserialize<'de> for LastTradesResponse
impl<'de> Deserialize<'de> for LastTradesResponse
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 Display for LastTradesResponse
impl Display for LastTradesResponse
Auto Trait Implementations§
impl Freeze for LastTradesResponse
impl RefUnwindSafe for LastTradesResponse
impl Send for LastTradesResponse
impl Sync for LastTradesResponse
impl Unpin for LastTradesResponse
impl UnwindSafe for LastTradesResponse
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