pub struct CryptoExchange {
pub id: u32,
pub exchange_type: Option<String>,
pub market: String,
pub name: String,
pub url: String,
pub locale: Option<String>,
pub tier: Option<String>,
}
Fields§
§id: u32
§exchange_type: Option<String>
§market: String
§name: String
§url: String
§locale: Option<String>
§tier: Option<String>
Trait Implementations§
Source§impl Clone for CryptoExchange
impl Clone for CryptoExchange
Source§fn clone(&self) -> CryptoExchange
fn clone(&self) -> CryptoExchange
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 CryptoExchange
impl Debug for CryptoExchange
Source§impl<'de> Deserialize<'de> for CryptoExchange
impl<'de> Deserialize<'de> for CryptoExchange
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 CryptoExchange
impl RefUnwindSafe for CryptoExchange
impl Send for CryptoExchange
impl Sync for CryptoExchange
impl Unpin for CryptoExchange
impl UnwindSafe for CryptoExchange
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