[][src]Struct widgetry::widgets::line_plot::LinePlot

pub struct LinePlot<T: Yvalue<T>> {
    draw: Drawable,
    max_x: Time,
    max_y: T,
    closest: FindClosest<String>,
    top_left: ScreenPt,
    dims: ScreenDims,
}

Fields

draw: Drawablemax_x: Timemax_y: Tclosest: FindClosest<String>top_left: ScreenPtdims: ScreenDims

Implementations

impl<T: Yvalue<T>> LinePlot<T>[src]

pub fn new(
    ctx: &EventCtx<'_>,
    series: Vec<Series<T>>,
    opts: PlotOptions<T>
) -> Widget
[src]

Trait Implementations

impl<T: Yvalue<T>> WidgetImpl for LinePlot<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for LinePlot<T>[src]

impl<T> !Send for LinePlot<T>[src]

impl<T> !Sync for LinePlot<T>[src]

impl<T> Unpin for LinePlot<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for LinePlot<T> where
    T: UnwindSafe
[src]

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> Downcast for T where
    T: Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.