pub struct GetHistoricalPrices {
pub market_name: String,
pub resolution: u32,
pub limit: Option<u32>,
pub start_time: Option<DateTime<Utc>>,
pub end_time: Option<DateTime<Utc>>,
}Fields§
§market_name: String§resolution: u32§limit: Option<u32>§start_time: Option<DateTime<Utc>>§end_time: Option<DateTime<Utc>>Implementations§
Trait Implementations§
Source§impl Clone for GetHistoricalPrices
impl Clone for GetHistoricalPrices
Source§fn clone(&self) -> GetHistoricalPrices
fn clone(&self) -> GetHistoricalPrices
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 GetHistoricalPrices
impl Debug for GetHistoricalPrices
Source§impl Default for GetHistoricalPrices
impl Default for GetHistoricalPrices
Source§fn default() -> GetHistoricalPrices
fn default() -> GetHistoricalPrices
Returns the “default value” for a type. Read more
Source§impl Request for GetHistoricalPrices
impl Request for GetHistoricalPrices
Auto Trait Implementations§
impl Freeze for GetHistoricalPrices
impl RefUnwindSafe for GetHistoricalPrices
impl Send for GetHistoricalPrices
impl Sync for GetHistoricalPrices
impl Unpin for GetHistoricalPrices
impl UnwindSafe for GetHistoricalPrices
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