[][src]Struct plotly_types::Plot

pub struct Plot<'a, W, D> { /* fields omitted */ }

Implementations

impl<'a, W, D> Plot<'a, W, D> where
    W: Write,
    D: AsRef<str>, 
[src]

pub fn new(
    w: W,
    graph_div: D,
    layout: &'a Layout,
    config: &'a Config
) -> Result<Self, Error>
[src]

pub fn add_trace<T>(&mut self, trace: T) -> Result<(), Error> where
    T: Serialize
[src]

pub fn finish(self) -> Result<(), Error>[src]

Auto Trait Implementations

impl<'a, W, D> RefUnwindSafe for Plot<'a, W, D> where
    D: RefUnwindSafe,
    W: RefUnwindSafe

impl<'a, W, D> Send for Plot<'a, W, D> where
    D: Send,
    W: Send

impl<'a, W, D> Sync for Plot<'a, W, D> where
    D: Sync,
    W: Sync

impl<'a, W, D> Unpin for Plot<'a, W, D> where
    D: Unpin,
    W: Unpin

impl<'a, W, D> UnwindSafe for Plot<'a, W, D> where
    D: UnwindSafe,
    W: 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.