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

pub struct CssMedia {
    pub text: String,
    pub source: CssMediaSource,
    pub source_url: Option<String>,
    pub range: Option<SourceRange>,
    pub style_sheet_id: Option<StyleSheetId>,
    pub media_list: Option<Vec<MediaQuery, Global>>,
}

CSS media rule descriptor. CSSMedia

Fields

text: String

Media query text.

source: CssMediaSource

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.

source_url: Option<String>

URL of the document containing the media query description.

range: Option<SourceRange>

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

style_sheet_id: Option<StyleSheetId>

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

media_list: Option<Vec<MediaQuery, Global>>

Array of media queries.

Implementations

impl CssMedia[src]

pub fn new(
    text: impl Into<String>,
    source: impl Into<CssMediaSource>
) -> CssMedia
[src]

impl CssMedia[src]

impl CssMedia[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for CssMedia[src]

impl Debug for CssMedia[src]

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

impl PartialEq<CssMedia> for CssMedia[src]

impl Serialize for CssMedia[src]

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