pub struct TradesParams {
pub start: Option<DateTime<Utc>>,
pub end: Option<DateTime<Utc>>,
pub page_token: Option<String>,
pub limit: Option<u32>,
pub asof: Option<String>,
pub feed: Option<String>,
pub sort: Option<String>,
}Fields§
§start: Option<DateTime<Utc>>§end: Option<DateTime<Utc>>§page_token: Option<String>§limit: Option<u32>§asof: Option<String>§feed: Option<String>§sort: Option<String>Trait Implementations§
Source§impl Debug for TradesParams
impl Debug for TradesParams
Source§impl Default for TradesParams
impl Default for TradesParams
Source§fn default() -> TradesParams
fn default() -> TradesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradesParams
impl<'de> Deserialize<'de> for TradesParams
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
Auto Trait Implementations§
impl Freeze for TradesParams
impl RefUnwindSafe for TradesParams
impl Send for TradesParams
impl Sync for TradesParams
impl Unpin for TradesParams
impl UnwindSafe for TradesParams
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