Struct tui::widgets::Dataset[][src]

pub struct Dataset<'a> { /* fields omitted */ }

A group of data points

Implementations

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

pub fn name<S>(self, name: S) -> Dataset<'a> where
    S: Into<Cow<'a, str>>, 
[src]

pub fn data(self, data: &'a [(f64, f64)]) -> Dataset<'a>[src]

pub fn marker(self, marker: Marker) -> Dataset<'a>[src]

pub fn graph_type(self, graph_type: GraphType) -> Dataset<'a>[src]

pub fn style(self, style: Style) -> Dataset<'a>[src]

Trait Implementations

impl<'a> Clone for Dataset<'a>[src]

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

impl<'a> Default for Dataset<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Dataset<'a>

impl<'a> Send for Dataset<'a>

impl<'a> Sync for Dataset<'a>

impl<'a> Unpin for Dataset<'a>

impl<'a> UnwindSafe for Dataset<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.