[][src]Struct web_sys::CssImportRule

#[repr(transparent)]pub struct CssImportRule { /* fields omitted */ }

The CssImportRule class.

MDN Documentation

This API requires the following crate features to be activated: CssImportRule

Implementations

impl CssImportRule[src]

pub fn href(&self) -> String[src]

Getter for the href field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssImportRule

impl CssImportRule[src]

pub fn media(&self) -> Option<MediaList>[src]

Getter for the media field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssImportRule, MediaList

impl CssImportRule[src]

pub fn style_sheet(&self) -> Option<CssStyleSheet>[src]

Getter for the styleSheet field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssImportRule, CssStyleSheet

Methods from Deref<Target = CssRule>

pub fn type_(&self) -> u16[src]

Getter for the type field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssRule

pub fn css_text(&self) -> String[src]

Getter for the cssText field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssRule

pub fn set_css_text(&self, value: &str)[src]

Setter for the cssText field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssRule

pub fn parent_rule(&self) -> Option<CssRule>[src]

Getter for the parentRule field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssRule

pub fn parent_style_sheet(&self) -> Option<CssStyleSheet>[src]

Getter for the parentStyleSheet field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssRule, CssStyleSheet

Trait Implementations

impl AsRef<CssImportRule> for CssImportRule[src]

impl AsRef<CssRule> for CssImportRule[src]

impl AsRef<JsValue> for CssImportRule[src]

impl AsRef<Object> for CssImportRule[src]

impl Clone for CssImportRule[src]

impl Debug for CssImportRule[src]

impl Deref for CssImportRule[src]

type Target = CssRule

The resulting type after dereferencing.

impl Eq for CssImportRule[src]

impl From<CssImportRule> for JsValue[src]

impl From<CssImportRule> for CssRule[src]

impl From<CssImportRule> for Object[src]

impl From<JsValue> for CssImportRule[src]

impl FromWasmAbi for CssImportRule[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for CssImportRule[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a CssImportRule[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for CssImportRule[src]

impl OptionFromWasmAbi for CssImportRule[src]

impl OptionIntoWasmAbi for CssImportRule[src]

impl<'a> OptionIntoWasmAbi for &'a CssImportRule[src]

impl PartialEq<CssImportRule> for CssImportRule[src]

impl RefFromWasmAbi for CssImportRule[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<CssImportRule>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for CssImportRule[src]

impl StructuralPartialEq for CssImportRule[src]

impl WasmDescribe for CssImportRule[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> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.