Struct gapi_grpc::google::monitoring::dashboard::v1::XyChart[][src]

pub struct XyChart {
    pub data_sets: Vec<DataSet>,
    pub timeshift_duration: Option<Duration>,
    pub thresholds: Vec<Threshold>,
    pub x_axis: Option<Axis>,
    pub y_axis: Option<Axis>,
    pub chart_options: Option<ChartOptions>,
}

A chart that displays data on a 2D (X and Y axes) plane.

Fields

data_sets: Vec<DataSet>

Required. The data displayed in this chart.

timeshift_duration: Option<Duration>

The duration used to display a comparison chart. A comparison chart simultaneously shows values from two similar-length time periods (e.g., week-over-week metrics). The duration must be positive, and it can only be applied to charts with data sets of LINE plot type.

thresholds: Vec<Threshold>

Threshold lines drawn horizontally across the chart.

x_axis: Option<Axis>

The properties applied to the X axis.

y_axis: Option<Axis>

The properties applied to the Y axis.

chart_options: Option<ChartOptions>

Display options for the chart.

Trait Implementations

impl Clone for XyChart[src]

impl Debug for XyChart[src]

impl Default for XyChart[src]

impl Message for XyChart[src]

impl PartialEq<XyChart> for XyChart[src]

impl StructuralPartialEq for XyChart[src]

Auto Trait Implementations

impl RefUnwindSafe for XyChart

impl Send for XyChart

impl Sync for XyChart

impl Unpin for XyChart

impl UnwindSafe for XyChart

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]