pub struct TradesSingleResponse {
pub symbol: String,
pub trades: Vec<Trade>,
pub next_page_token: Option<String>,
pub currency: Option<Currency>,
}Fields§
§symbol: String§trades: Vec<Trade>§next_page_token: Option<String>§currency: Option<Currency>Trait Implementations§
Source§impl Clone for TradesSingleResponse
impl Clone for TradesSingleResponse
Source§fn clone(&self) -> TradesSingleResponse
fn clone(&self) -> TradesSingleResponse
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 TradesSingleResponse
impl Debug for TradesSingleResponse
Source§impl Default for TradesSingleResponse
impl Default for TradesSingleResponse
Source§fn default() -> TradesSingleResponse
fn default() -> TradesSingleResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradesSingleResponse
impl<'de> Deserialize<'de> for TradesSingleResponse
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 TradesSingleResponse
impl PartialEq for TradesSingleResponse
impl StructuralPartialEq for TradesSingleResponse
Auto Trait Implementations§
impl Freeze for TradesSingleResponse
impl RefUnwindSafe for TradesSingleResponse
impl Send for TradesSingleResponse
impl Sync for TradesSingleResponse
impl Unpin for TradesSingleResponse
impl UnwindSafe for TradesSingleResponse
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