pub enum BarAlignedSeries {
Klines(Vec<BarPoint>),
Scalar(Vec<ScalarBar>),
}Expand description
Bar-aligned series, shaped by the stream kind. Mirrors the kline path so
mlq keys it the same way and warmup feeds it to the matching update_*.
Variants§
Klines(Vec<BarPoint>)
Mark/index/premium price klines — native OHLCV bars.
Scalar(Vec<ScalarBar>)
Scalar state or flow stream collapsed onto the bar grid.
Implementations§
Trait Implementations§
Source§impl Clone for BarAlignedSeries
impl Clone for BarAlignedSeries
Source§fn clone(&self) -> BarAlignedSeries
fn clone(&self) -> BarAlignedSeries
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 moreAuto Trait Implementations§
impl Freeze for BarAlignedSeries
impl RefUnwindSafe for BarAlignedSeries
impl Send for BarAlignedSeries
impl Sync for BarAlignedSeries
impl Unpin for BarAlignedSeries
impl UnsafeUnpin for BarAlignedSeries
impl UnwindSafe for BarAlignedSeries
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