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

pub struct Dashboard {
    pub name: String,
    pub display_name: String,
    pub etag: String,
    pub layout: Option<Layout>,
}

A Google Stackdriver dashboard. Dashboards define the content and layout of pages in the Stackdriver web application.

Fields

name: String

Immutable. The resource name of the dashboard.

display_name: String

Required. The mutable, human-readable name.

etag: String

etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. An etag is returned in the response to GetDashboard, and users are expected to put that etag in the request to UpdateDashboard to ensure that their change will be applied to the same version of the Dashboard configuration. The field should not be passed during dashboard creation.

layout: Option<Layout>

A dashboard’s root container element that defines the layout style.

Trait Implementations

impl Clone for Dashboard[src]

impl Debug for Dashboard[src]

impl Default for Dashboard[src]

impl Message for Dashboard[src]

impl PartialEq<Dashboard> for Dashboard[src]

impl StructuralPartialEq for Dashboard[src]

Auto Trait Implementations

impl RefUnwindSafe for Dashboard

impl Send for Dashboard

impl Sync for Dashboard

impl Unpin for Dashboard

impl UnwindSafe for Dashboard

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]