pub struct HistoricalLimitsResponse {
pub total_currencies: u32,
pub currencies: HashMap<String, HistoricalLimit>,
}Expand description
Response for Client::get_historical_limits.
Fields§
§total_currencies: u32Total number of currencies with historical coverage.
currencies: HashMap<String, HistoricalLimit>Per-currency coverage details, keyed by ISO-4217 code.
Trait Implementations§
Source§impl Clone for HistoricalLimitsResponse
impl Clone for HistoricalLimitsResponse
Source§fn clone(&self) -> HistoricalLimitsResponse
fn clone(&self) -> HistoricalLimitsResponse
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 HistoricalLimitsResponse
impl Debug for HistoricalLimitsResponse
Source§impl<'de> Deserialize<'de> for HistoricalLimitsResponse
impl<'de> Deserialize<'de> for HistoricalLimitsResponse
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 HistoricalLimitsResponse
Source§impl PartialEq for HistoricalLimitsResponse
impl PartialEq for HistoricalLimitsResponse
Source§fn eq(&self, other: &HistoricalLimitsResponse) -> bool
fn eq(&self, other: &HistoricalLimitsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoricalLimitsResponse
Auto Trait Implementations§
impl Freeze for HistoricalLimitsResponse
impl RefUnwindSafe for HistoricalLimitsResponse
impl Send for HistoricalLimitsResponse
impl Sync for HistoricalLimitsResponse
impl Unpin for HistoricalLimitsResponse
impl UnsafeUnpin for HistoricalLimitsResponse
impl UnwindSafe for HistoricalLimitsResponse
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