pub struct IndexComponentItem {
pub exchange: Option<String>,
pub symbol: Option<String>,
pub price: Option<String>,
pub weight: Option<String>,
}Expand description
Index component item.
Fields§
§exchange: Option<String>§symbol: Option<String>§price: Option<String>§weight: Option<String>Trait Implementations§
Source§impl Clone for IndexComponentItem
impl Clone for IndexComponentItem
Source§fn clone(&self) -> IndexComponentItem
fn clone(&self) -> IndexComponentItem
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 IndexComponentItem
impl Debug for IndexComponentItem
Source§impl<'de> Deserialize<'de> for IndexComponentItem
impl<'de> Deserialize<'de> for IndexComponentItem
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 IndexComponentItem
impl RefUnwindSafe for IndexComponentItem
impl Send for IndexComponentItem
impl Sync for IndexComponentItem
impl Unpin for IndexComponentItem
impl UnsafeUnpin for IndexComponentItem
impl UnwindSafe for IndexComponentItem
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