Struct chrome_remote_interface_model::css::CssMedia[][src]

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

CSS media rule descriptor.

Implementations

impl CssMedia[src]

pub fn builder() -> CssMediaBuilder[src]

pub fn text(&self) -> &str[src]

Media query text.

pub fn source(&self) -> &CssMediaSource[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(&self) -> Option<&String>[src]

URL of the document containing the media query description.

pub fn range(&self) -> Option<&SourceRange>[src]

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

pub fn style_sheet_id(&self) -> Option<&StyleSheetId>[src]

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

pub fn media_list(&self) -> Option<&Vec<MediaQuery>>[src]

Array of media queries.

Trait Implementations

impl Clone for CssMedia[src]

impl Debug for CssMedia[src]

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

impl Serialize for CssMedia[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.