Struct chrome_remote_interface_model::overlay::GridHighlightConfig[][src]

pub struct GridHighlightConfig { /* fields omitted */ }
This is supported on crate features experimental and Overlay and DOM and Page and Runtime only.

Configuration data for the highlighting of Grid elements.

Implementations

impl GridHighlightConfig[src]

pub fn builder() -> GridHighlightConfigBuilder[src]

pub fn show_grid_extension_lines(&self) -> Option<&bool>[src]

Whether the extension lines from grid cells to the rulers should be shown (default: false).

pub fn show_positive_line_numbers(&self) -> Option<&bool>[src]

Show Positive line number labels (default: false).

pub fn show_negative_line_numbers(&self) -> Option<&bool>[src]

Show Negative line number labels (default: false).

pub fn show_area_names(&self) -> Option<&bool>[src]

Show area name labels (default: false).

pub fn show_line_names(&self) -> Option<&bool>[src]

Show line name labels (default: false).

pub fn show_track_sizes(&self) -> Option<&bool>[src]

Show track size labels (default: false).

pub fn grid_border_color(&self) -> Option<&Rgba>[src]

The grid container border highlight color (default: transparent).

pub fn cell_border_color(&self) -> Option<&Rgba>[src]

👎 Deprecated

The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.

pub fn row_line_color(&self) -> Option<&Rgba>[src]

The row line color (default: transparent).

pub fn column_line_color(&self) -> Option<&Rgba>[src]

The column line color (default: transparent).

pub fn grid_border_dash(&self) -> Option<&bool>[src]

Whether the grid border is dashed (default: false).

pub fn cell_border_dash(&self) -> Option<&bool>[src]

👎 Deprecated

Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.

pub fn row_line_dash(&self) -> Option<&bool>[src]

Whether row lines are dashed (default: false).

pub fn column_line_dash(&self) -> Option<&bool>[src]

Whether column lines are dashed (default: false).

pub fn row_gap_color(&self) -> Option<&Rgba>[src]

The row gap highlight fill color (default: transparent).

pub fn row_hatch_color(&self) -> Option<&Rgba>[src]

The row gap hatching fill color (default: transparent).

pub fn column_gap_color(&self) -> Option<&Rgba>[src]

The column gap highlight fill color (default: transparent).

pub fn column_hatch_color(&self) -> Option<&Rgba>[src]

The column gap hatching fill color (default: transparent).

pub fn area_border_color(&self) -> Option<&Rgba>[src]

The named grid areas border color (Default: transparent).

pub fn grid_background_color(&self) -> Option<&Rgba>[src]

The grid container background color (Default: transparent).

Trait Implementations

impl Clone for GridHighlightConfig[src]

impl Debug for GridHighlightConfig[src]

impl<'de> Deserialize<'de> for GridHighlightConfig[src]

impl Serialize for GridHighlightConfig[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.