[][src]Enum criterion_plot::errorbar::ErrorBar

pub enum ErrorBar<X, Y, L, H> {
    XErrorBars {
        x: X,
        y: Y,
        x_low: L,
        x_high: H,
    },
    XErrorLines {
        x: X,
        y: Y,
        x_low: L,
        x_high: H,
    },
    YErrorBars {
        x: X,
        y: Y,
        y_low: L,
        y_high: H,
    },
    YErrorLines {
        x: X,
        y: Y,
        y_low: L,
        y_high: H,
    },
}

Asymmetric error bar plots

Variants

XErrorBars

Horizontal error bars

Fields of XErrorBars

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

x_low: L

X coordinate of the left end of the error bar

x_high: H

Y coordinate of the right end of the error bar

XErrorLines

Horizontal error bars, where each point is joined by a line

Fields of XErrorLines

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

x_low: L

X coordinate of the left end of the error bar

x_high: H

Y coordinate of the right end of the error bar

YErrorBars

Vertical error bars

Fields of YErrorBars

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

y_low: L

Y coordinate of the bottom of the error bar

y_high: H

Y coordinate of the top of the error bar

YErrorLines

Vertical error bars, where each point is joined by a line

Fields of YErrorLines

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

y_low: L

Y coordinate of the bottom of the error bar

y_high: H

Y coordinate of the top of the error bar

Trait Implementations

impl<X, Y, L, H> Plot<ErrorBar<X, Y, L, H>> for Figure where
    H: IntoIterator,
    H::Item: Data,
    L: IntoIterator,
    L::Item: Data,
    X: IntoIterator,
    X::Item: Data,
    Y: IntoIterator,
    Y::Item: Data
[src]

type Properties = Properties

The properties associated to the plot

Auto Trait Implementations

impl<X, Y, L, H> RefUnwindSafe for ErrorBar<X, Y, L, H> where
    H: RefUnwindSafe,
    L: RefUnwindSafe,
    X: RefUnwindSafe,
    Y: RefUnwindSafe

impl<X, Y, L, H> Send for ErrorBar<X, Y, L, H> where
    H: Send,
    L: Send,
    X: Send,
    Y: Send

impl<X, Y, L, H> Sync for ErrorBar<X, Y, L, H> where
    H: Sync,
    L: Sync,
    X: Sync,
    Y: Sync

impl<X, Y, L, H> Unpin for ErrorBar<X, Y, L, H> where
    H: Unpin,
    L: Unpin,
    X: Unpin,
    Y: Unpin

impl<X, Y, L, H> UnwindSafe for ErrorBar<X, Y, L, H> where
    H: UnwindSafe,
    L: UnwindSafe,
    X: UnwindSafe,
    Y: 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.