Struct chromiumoxide::cdp::browser_protocol::css::GetBackgroundColorsReturns[][src]

pub struct GetBackgroundColorsReturns {
    pub background_colors: Option<Vec<String, Global>>,
    pub computed_font_size: Option<String>,
    pub computed_font_weight: Option<String>,
}

Fields

background_colors: Option<Vec<String, Global>>

The range of background colors behind this element, if it contains any visible text. If no visible text is present, this will be undefined. In the case of a flat background color, this will consist of simply that color. In the case of a gradient, this will consist of each of the color stops. For anything more complicated, this will be an empty array. Images will be ignored (as if the image had failed to load).

computed_font_size: Option<String>

The computed font size for this node, as a CSS computed value string (e.g. ‘12px’).

computed_font_weight: Option<String>

The computed font weight for this node, as a CSS computed value string (e.g. ‘normal’ or ‘100’).

Implementations

impl GetBackgroundColorsReturns[src]

Trait Implementations

impl Clone for GetBackgroundColorsReturns[src]

impl Debug for GetBackgroundColorsReturns[src]

impl Default for GetBackgroundColorsReturns[src]

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

impl PartialEq<GetBackgroundColorsReturns> for GetBackgroundColorsReturns[src]

impl Serialize for GetBackgroundColorsReturns[src]

impl StructuralPartialEq for GetBackgroundColorsReturns[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> Same<T> for T

type Output = T

Should always be Self

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>,