pub struct InstrumentPrices {
pub columns: HashMap<String, Vec<Cell>>,
pub ohlc_data: OhlcData,
pub adjust_info: Option<AdjustInfo>,
pub merged: bool,
}Expand description
Structured per-instrument price output.
Fields§
§columns: HashMap<String, Vec<Cell>>header -> column of cells
ohlc_data: OhlcData§adjust_info: Option<AdjustInfo>§merged: boolSet when this symbol was merged into another (JS MERGED_SYMBOL_CONTENT).
Trait Implementations§
Source§impl Clone for InstrumentPrices
impl Clone for InstrumentPrices
Source§fn clone(&self) -> InstrumentPrices
fn clone(&self) -> InstrumentPrices
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 InstrumentPrices
impl Debug for InstrumentPrices
Source§impl Default for InstrumentPrices
impl Default for InstrumentPrices
Source§fn default() -> InstrumentPrices
fn default() -> InstrumentPrices
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstrumentPrices
impl RefUnwindSafe for InstrumentPrices
impl Send for InstrumentPrices
impl Sync for InstrumentPrices
impl Unpin for InstrumentPrices
impl UnsafeUnpin for InstrumentPrices
impl UnwindSafe for InstrumentPrices
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