pub enum PlotData<'a> {
Scatter(Scatter<'a>),
Line2D(Line2D<'a>),
FillBetween(FillBetween<'a>),
}
Expand description
Plot type.
Variants§
Implementations§
Trait Implementations§
Source§impl<'a> From<FillBetween<'a>> for PlotData<'a>
impl<'a> From<FillBetween<'a>> for PlotData<'a>
Source§fn from(data: FillBetween<'a>) -> PlotData<'a>
fn from(data: FillBetween<'a>) -> PlotData<'a>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for PlotData<'a>
impl<'a> RefUnwindSafe for PlotData<'a>
impl<'a> Send for PlotData<'a>
impl<'a> Sync for PlotData<'a>
impl<'a> Unpin for PlotData<'a>
impl<'a> UnwindSafe for PlotData<'a>
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