pub struct Logo {
pub meta: Option<Box<LogoMeta>>,
pub url: Option<String>,
pub logo_base: Option<String>,
pub logo_quote: Option<String>,
}Fields§
§meta: Option<Box<LogoMeta>>§url: Option<String>Link to download the logo (for stocks only)
logo_base: Option<String>Link to download the base currency logo (for forex and crypto only)
logo_quote: Option<String>Link to download the quote currency logo (for forex and crypto only)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Logo
impl<'de> Deserialize<'de> for Logo
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
impl StructuralPartialEq for Logo
Auto Trait Implementations§
impl Freeze for Logo
impl RefUnwindSafe for Logo
impl Send for Logo
impl Sync for Logo
impl Unpin for Logo
impl UnwindSafe for Logo
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