Trait mzsignal::plot::PlotBuilder[][src]

pub trait PlotBuilder<'a> {
    type BackendType: DrawingBackend;
    fn size(&mut self, width: u32, height: u32) -> &mut Self;
fn path<P: Into<PathBuf>>(&mut self, path: P) -> &mut Self;
fn add_series<S: Into<SpectrumSeries<'a>>>(
        &mut self,
        series: S
    ) -> &mut Self;
fn xlim(&mut self, xlow: f64, xhigh: f64) -> &mut Self;
fn draw(
        &mut self
    ) -> Result<(), Box<DrawingAreaErrorKind<<Self::BackendType as DrawingBackend>::ErrorType>>>; }

Associated Types

Required methods

Implementors