pub struct HistoricalLimit {
pub earliest_date: String,
pub latest_date: String,
}Expand description
Historical-data coverage window for a single currency.
Fields§
§earliest_date: StringEarliest date (YYYY-MM-DD) for which data is available.
latest_date: StringLatest date (YYYY-MM-DD) for which data is available.
Trait Implementations§
Source§impl Clone for HistoricalLimit
impl Clone for HistoricalLimit
Source§fn clone(&self) -> HistoricalLimit
fn clone(&self) -> HistoricalLimit
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 HistoricalLimit
impl Debug for HistoricalLimit
Source§impl<'de> Deserialize<'de> for HistoricalLimit
impl<'de> Deserialize<'de> for HistoricalLimit
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
impl Eq for HistoricalLimit
Source§impl PartialEq for HistoricalLimit
impl PartialEq for HistoricalLimit
Source§fn eq(&self, other: &HistoricalLimit) -> bool
fn eq(&self, other: &HistoricalLimit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoricalLimit
Auto Trait Implementations§
impl Freeze for HistoricalLimit
impl RefUnwindSafe for HistoricalLimit
impl Send for HistoricalLimit
impl Sync for HistoricalLimit
impl Unpin for HistoricalLimit
impl UnsafeUnpin for HistoricalLimit
impl UnwindSafe for HistoricalLimit
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