pub struct CryptoSymbol {
pub description: String,
pub display_symbol: String,
pub symbol: String,
}Expand description
Crypto symbol information.
Fields§
§description: StringSymbol description.
display_symbol: StringDisplay symbol.
symbol: StringSymbol.
Trait Implementations§
Source§impl Clone for CryptoSymbol
impl Clone for CryptoSymbol
Source§fn clone(&self) -> CryptoSymbol
fn clone(&self) -> CryptoSymbol
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 CryptoSymbol
impl Debug for CryptoSymbol
Source§impl<'de> Deserialize<'de> for CryptoSymbol
impl<'de> Deserialize<'de> for CryptoSymbol
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 CryptoSymbol
impl RefUnwindSafe for CryptoSymbol
impl Send for CryptoSymbol
impl Sync for CryptoSymbol
impl Unpin for CryptoSymbol
impl UnsafeUnpin for CryptoSymbol
impl UnwindSafe for CryptoSymbol
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