Struct chrome_remote_interface_model::css::CssMediaBuilder[][src]

pub struct CssMediaBuilder { /* fields omitted */ }

Implementations

impl CssMediaBuilder[src]

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

Media query text.

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

Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if specified by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked stylesheet's LINK tag, "inlineSheet" if specified by a "media" attribute in an inline stylesheet's STYLE tag.

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

URL of the document containing the media query description.

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

The associated rule (@media or @import) header range in the enclosing stylesheet (if available).

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

Identifier of the stylesheet containing this object (if exists).

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

Array of media queries.

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

Trait Implementations

impl Clone for CssMediaBuilder[src]

impl Debug for CssMediaBuilder[src]

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