[][src]Struct web_sys::CssStyleSheet

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

The CssStyleSheet class.

MDN Documentation

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

Implementations

impl CssStyleSheet[src]

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

Getter for the ownerRule field of this object.

MDN Documentation

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

impl CssStyleSheet[src]

pub fn css_rules(&self) -> Result<CssRuleList, JsValue>[src]

Getter for the cssRules field of this object.

MDN Documentation

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

impl CssStyleSheet[src]

pub fn delete_rule(&self, index: u32) -> Result<(), JsValue>[src]

The deleteRule() method.

MDN Documentation

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

impl CssStyleSheet[src]

pub fn insert_rule(&self, rule: &str) -> Result<u32, JsValue>[src]

The insertRule() method.

MDN Documentation

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

impl CssStyleSheet[src]

pub fn insert_rule_with_index(
    &self,
    rule: &str,
    index: u32
) -> Result<u32, JsValue>
[src]

The insertRule() method.

MDN Documentation

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

Methods from Deref<Target = StyleSheet>

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

Getter for the type field of this object.

MDN Documentation

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

pub fn href(&self) -> Result<Option<String>, JsValue>[src]

Getter for the href field of this object.

MDN Documentation

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

pub fn owner_node(&self) -> Option<Node>[src]

Getter for the ownerNode field of this object.

MDN Documentation

This API requires the following crate features to be activated: Node, StyleSheet

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

Getter for the parentStyleSheet field of this object.

MDN Documentation

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

pub fn title(&self) -> Option<String>[src]

Getter for the title field of this object.

MDN Documentation

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

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

Getter for the media field of this object.

MDN Documentation

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

pub fn disabled(&self) -> bool[src]

Getter for the disabled field of this object.

MDN Documentation

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

pub fn set_disabled(&self, value: bool)[src]

Setter for the disabled field of this object.

MDN Documentation

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

Trait Implementations

impl AsRef<CssStyleSheet> for CssStyleSheet[src]

impl AsRef<JsValue> for CssStyleSheet[src]

impl AsRef<Object> for CssStyleSheet[src]

impl AsRef<StyleSheet> for CssStyleSheet[src]

impl Clone for CssStyleSheet[src]

impl Debug for CssStyleSheet[src]

impl Deref for CssStyleSheet[src]

type Target = StyleSheet

The resulting type after dereferencing.

impl Eq for CssStyleSheet[src]

impl From<CssStyleSheet> for JsValue[src]

impl From<CssStyleSheet> for StyleSheet[src]

impl From<CssStyleSheet> for Object[src]

impl From<JsValue> for CssStyleSheet[src]

impl FromWasmAbi for CssStyleSheet[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 CssStyleSheet[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 CssStyleSheet[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 CssStyleSheet[src]

impl OptionFromWasmAbi for CssStyleSheet[src]

impl OptionIntoWasmAbi for CssStyleSheet[src]

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

impl PartialEq<CssStyleSheet> for CssStyleSheet[src]

impl RefFromWasmAbi for CssStyleSheet[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<CssStyleSheet>

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 CssStyleSheet[src]

impl StructuralPartialEq for CssStyleSheet[src]

impl WasmDescribe for CssStyleSheet[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.