Struct chromiumoxide_cdp::cdp::browser_protocol::page::FontFamilies[][src]

pub struct FontFamilies {
    pub standard: Option<String>,
    pub fixed: Option<String>,
    pub serif: Option<String>,
    pub sans_serif: Option<String>,
    pub cursive: Option<String>,
    pub fantasy: Option<String>,
    pub pictograph: Option<String>,
}

Generic font families collection. FontFamilies

Fields

standard: Option<String>

The standard font-family.

fixed: Option<String>

The fixed font-family.

serif: Option<String>

The serif font-family.

sans_serif: Option<String>

The sansSerif font-family.

cursive: Option<String>

The cursive font-family.

fantasy: Option<String>

The fantasy font-family.

pictograph: Option<String>

The pictograph font-family.

Implementations

impl FontFamilies[src]

impl FontFamilies[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for FontFamilies[src]

impl Debug for FontFamilies[src]

impl Default for FontFamilies[src]

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

impl PartialEq<FontFamilies> for FontFamilies[src]

impl Serialize for FontFamilies[src]

impl StructuralPartialEq for FontFamilies[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.