pub enum DatasetEntry<X: GXExt> {
XY {
kind: XYKind,
data: TRef<X, XYData>,
style: SeriesStyleV,
},
DashedLine {
data: TRef<X, XYData>,
dash: f64,
gap: f64,
style: SeriesStyleV,
},
Bar {
data: TRef<X, BarData>,
style: BarStyleV,
},
Candlestick {
data: TRef<X, OHLCData>,
style: CandlestickStyleV,
},
ErrorBar {
data: TRef<X, EBData>,
style: SeriesStyleV,
},
Pie {
data: TRef<X, BarData>,
style: PieStyleV,
},
Scatter3D {
data: TRef<X, XYZData>,
style: SeriesStyleV,
},
Line3D {
data: TRef<X, XYZData>,
style: SeriesStyleV,
},
Surface {
data: TRef<X, SurfaceData>,
style: SurfaceStyleV,
},
}Expand description
A compiled dataset with live reactive data refs.
Variants§
Implementations§
Auto Trait Implementations§
impl<X> Freeze for DatasetEntry<X>
impl<X> !RefUnwindSafe for DatasetEntry<X>
impl<X> Send for DatasetEntry<X>
impl<X> Sync for DatasetEntry<X>
impl<X> Unpin for DatasetEntry<X>
impl<X> UnsafeUnpin for DatasetEntry<X>
impl<X> !UnwindSafe for DatasetEntry<X>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.