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

pub struct MosaicLayout {
    pub columns: i32,
    pub tiles: Vec<Tile>,
}

A mosaic layout divides the available space into a grid of blocks, and overlays the grid with tiles. Unlike GridLayout, tiles may span multiple grid blocks and can be placed at arbitrary locations in the grid.

Fields

columns: i32

The number of columns in the mosaic grid. The number of columns must be between 1 and 12, inclusive.

tiles: Vec<Tile>

The tiles to display.

Trait Implementations

impl Clone for MosaicLayout[src]

impl Debug for MosaicLayout[src]

impl Default for MosaicLayout[src]

impl Message for MosaicLayout[src]

impl PartialEq<MosaicLayout> for MosaicLayout[src]

impl StructuralPartialEq for MosaicLayout[src]

Auto Trait Implementations

impl RefUnwindSafe for MosaicLayout

impl Send for MosaicLayout

impl Sync for MosaicLayout

impl Unpin for MosaicLayout

impl UnwindSafe for MosaicLayout

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]