pub struct TradesWrapper {
pub items: Vec<Trade>,
}Expand description
Wrapper for trades section
Fields§
§items: Vec<Trade>List of trades
Trait Implementations§
Source§impl Clone for TradesWrapper
impl Clone for TradesWrapper
Source§fn clone(&self) -> TradesWrapper
fn clone(&self) -> TradesWrapper
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 TradesWrapper
impl Debug for TradesWrapper
Source§impl Default for TradesWrapper
impl Default for TradesWrapper
Source§fn default() -> TradesWrapper
fn default() -> TradesWrapper
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradesWrapper
impl<'de> Deserialize<'de> for TradesWrapper
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 TradesWrapper
impl PartialEq for TradesWrapper
Source§impl Serialize for TradesWrapper
impl Serialize for TradesWrapper
impl StructuralPartialEq for TradesWrapper
Auto Trait Implementations§
impl Freeze for TradesWrapper
impl RefUnwindSafe for TradesWrapper
impl Send for TradesWrapper
impl Sync for TradesWrapper
impl Unpin for TradesWrapper
impl UnwindSafe for TradesWrapper
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