pub struct CryptoCoin {
pub coin: Option<String>,
pub full_name: Option<String>,
pub icon: Option<String>,
pub icon_night: Option<String>,
pub precision: Option<i32>,
pub disable: Option<bool>,
pub single_from_min_limit: Option<String>,
pub single_from_max_limit: Option<String>,
}Fields§
§coin: Option<String>§full_name: Option<String>§icon: Option<String>§icon_night: Option<String>§precision: Option<i32>§disable: Option<bool>§single_from_min_limit: Option<String>§single_from_max_limit: Option<String>Trait Implementations§
Source§impl Clone for CryptoCoin
impl Clone for CryptoCoin
Source§fn clone(&self) -> CryptoCoin
fn clone(&self) -> CryptoCoin
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 CryptoCoin
impl Debug for CryptoCoin
Source§impl<'de> Deserialize<'de> for CryptoCoin
impl<'de> Deserialize<'de> for CryptoCoin
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 CryptoCoin
impl RefUnwindSafe for CryptoCoin
impl Send for CryptoCoin
impl Sync for CryptoCoin
impl Unpin for CryptoCoin
impl UnsafeUnpin for CryptoCoin
impl UnwindSafe for CryptoCoin
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