pub struct CurrencyList {
pub total: i64,
pub currencies: Vec<Currency>,
}Fields§
§total: i64§currencies: Vec<Currency>Implementations§
Trait Implementations§
Source§impl Clone for CurrencyList
impl Clone for CurrencyList
Source§fn clone(&self) -> CurrencyList
fn clone(&self) -> CurrencyList
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 CurrencyList
impl Debug for CurrencyList
Source§impl<'de> Deserialize<'de> for CurrencyList
impl<'de> Deserialize<'de> for CurrencyList
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 Display for CurrencyList
impl Display for CurrencyList
Auto Trait Implementations§
impl Freeze for CurrencyList
impl RefUnwindSafe for CurrencyList
impl Send for CurrencyList
impl Sync for CurrencyList
impl Unpin for CurrencyList
impl UnwindSafe for CurrencyList
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