pub struct TradeHistoryReq {
pub symbol: String,
pub paginator: Option<Paginator>,
}Expand description
This struct represents a trade history request
Fields§
§symbol: String§paginator: Option<Paginator>Trait Implementations§
Source§impl Clone for TradeHistoryReq
impl Clone for TradeHistoryReq
Source§fn clone(&self) -> TradeHistoryReq
fn clone(&self) -> TradeHistoryReq
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 TradeHistoryReq
impl Debug for TradeHistoryReq
Source§impl<'de> Deserialize<'de> for TradeHistoryReq
impl<'de> Deserialize<'de> for TradeHistoryReq
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 Serialize for TradeHistoryReq
impl Serialize for TradeHistoryReq
Source§impl TryFrom<&TradeHistoryRequest> for TradeHistoryReq
impl TryFrom<&TradeHistoryRequest> for TradeHistoryReq
Source§type Error = OpenLimitsError
type Error = OpenLimitsError
The type returned in the event of a conversion error.
Source§fn try_from(trade_history: &TradeHistoryRequest) -> Result<Self>
fn try_from(trade_history: &TradeHistoryRequest) -> Result<Self>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TradeHistoryReq
impl RefUnwindSafe for TradeHistoryReq
impl Send for TradeHistoryReq
impl Sync for TradeHistoryReq
impl Unpin for TradeHistoryReq
impl UnsafeUnpin for TradeHistoryReq
impl UnwindSafe for TradeHistoryReq
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