Enum rustplotlib::PlotData [] [src]

pub enum PlotData<'a> {
    Scatter(Scatter<'a>),
    Line2D(Line2D<'a>),
    FillBetween(FillBetween<'a>),
}

Plot type.

Variants

Methods

impl<'a> PlotData<'a>
[src]

Trait Implementations

impl<'a> Debug for PlotData<'a>
[src]

Formats the value using the given formatter.

impl<'a> From<Scatter<'a>> for PlotData<'a>
[src]

Performs the conversion.

impl<'a> From<Line2D<'a>> for PlotData<'a>
[src]

Performs the conversion.

impl<'a> From<FillBetween<'a>> for PlotData<'a>
[src]

Performs the conversion.