pub struct CoinListResult {
pub fiats: Option<Vec<FiatCoin>>,
pub cryptos: Option<Vec<CryptoCoin>>,
}Fields§
§fiats: Option<Vec<FiatCoin>>§cryptos: Option<Vec<CryptoCoin>>Trait Implementations§
Source§impl Clone for CoinListResult
impl Clone for CoinListResult
Source§fn clone(&self) -> CoinListResult
fn clone(&self) -> CoinListResult
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 CoinListResult
impl Debug for CoinListResult
Source§impl<'de> Deserialize<'de> for CoinListResult
impl<'de> Deserialize<'de> for CoinListResult
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
Auto Trait Implementations§
impl Freeze for CoinListResult
impl RefUnwindSafe for CoinListResult
impl Send for CoinListResult
impl Sync for CoinListResult
impl Unpin for CoinListResult
impl UnsafeUnpin for CoinListResult
impl UnwindSafe for CoinListResult
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