pub struct Cryptocurrencies {
pub data: Option<Vec<CryptocurrencyResponseItem>>,
pub status: Option<String>,
}Fields§
§data: Option<Vec<CryptocurrencyResponseItem>>List of cryptocurrencies
status: Option<String>Response status
Implementations§
Source§impl Cryptocurrencies
impl Cryptocurrencies
pub fn new() -> Cryptocurrencies
Trait Implementations§
Source§impl Clone for Cryptocurrencies
impl Clone for Cryptocurrencies
Source§fn clone(&self) -> Cryptocurrencies
fn clone(&self) -> Cryptocurrencies
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 Cryptocurrencies
impl Debug for Cryptocurrencies
Source§impl Default for Cryptocurrencies
impl Default for Cryptocurrencies
Source§fn default() -> Cryptocurrencies
fn default() -> Cryptocurrencies
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Cryptocurrencies
impl<'de> Deserialize<'de> for Cryptocurrencies
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 PartialEq for Cryptocurrencies
impl PartialEq for Cryptocurrencies
Source§impl Serialize for Cryptocurrencies
impl Serialize for Cryptocurrencies
impl StructuralPartialEq for Cryptocurrencies
Auto Trait Implementations§
impl Freeze for Cryptocurrencies
impl RefUnwindSafe for Cryptocurrencies
impl Send for Cryptocurrencies
impl Sync for Cryptocurrencies
impl Unpin for Cryptocurrencies
impl UnwindSafe for Cryptocurrencies
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