Struct poloto::build::PlotterBuilder[][src]

pub struct PlotterBuilder<D: Display> { /* fields omitted */ }

If plot isn’t good enough, use this struct for more control.

Implementations

impl PlotterBuilder<&'static str>[src]

pub fn new() -> Self[src]

pub fn with_header<J: Display>(self, header: J) -> PlotterBuilder<J>[src]

pub fn with_svg(self, svg: bool) -> Self[src]

impl<'a, D: Display + 'a> PlotterBuilder<D>[src]

pub fn build<A: Display + 'a, B: Display + 'a, C: Display + 'a>(
    self,
    title: A,
    xname: B,
    yname: C
) -> Plotter<'a, NamesStruct<A, B, C, D>>
[src]

Trait Implementations

impl Default for PlotterBuilder<&'static str>[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for PlotterBuilder<D> where
    D: RefUnwindSafe

impl<D> Send for PlotterBuilder<D> where
    D: Send

impl<D> Sync for PlotterBuilder<D> where
    D: Sync

impl<D> Unpin for PlotterBuilder<D> where
    D: Unpin

impl<D> UnwindSafe for PlotterBuilder<D> where
    D: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.