Struct chrome_remote_interface_model::css::FontFaceBuilder[][src]

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

Implementations

impl FontFaceBuilder[src]

pub fn font_family(&mut self, v: String) -> &mut Self[src]

The font-family.

pub fn font_style(&mut self, v: String) -> &mut Self[src]

The font-style.

pub fn font_variant(&mut self, v: String) -> &mut Self[src]

The font-variant.

pub fn font_weight(&mut self, v: String) -> &mut Self[src]

The font-weight.

pub fn font_stretch(&mut self, v: String) -> &mut Self[src]

The font-stretch.

pub fn unicode_range(&mut self, v: String) -> &mut Self[src]

The unicode-range.

pub fn src(&mut self, v: String) -> &mut Self[src]

The src.

pub fn platform_font_family(&mut self, v: String) -> &mut Self[src]

The resolved platform font family

pub fn font_variation_axes(&mut self, v: Vec<FontVariationAxis>) -> &mut Self[src]

Available variation settings (a.k.a. "axes").

pub fn build(&mut self) -> Result<FontFace, &'static str>[src]

Trait Implementations

impl Clone for FontFaceBuilder[src]

impl Debug for FontFaceBuilder[src]

impl Default for FontFaceBuilder[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> 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.