[][src]Struct web_sys::CssGroupingRule

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

The CssGroupingRule class.

MDN Documentation

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

Implementations

impl CssGroupingRule[src]

pub fn css_rules(&self) -> CssRuleList[src]

Getter for the cssRules field of this object.

MDN Documentation

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

impl CssGroupingRule[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: CssGroupingRule

impl CssGroupingRule[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: CssGroupingRule

impl CssGroupingRule[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: CssGroupingRule

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<CssGroupingRule> for CssConditionRule[src]

impl AsRef<CssGroupingRule> for CssGroupingRule[src]

impl AsRef<CssGroupingRule> for CssMediaRule[src]

impl AsRef<CssGroupingRule> for CssSupportsRule[src]

impl AsRef<CssRule> for CssGroupingRule[src]

impl AsRef<JsValue> for CssGroupingRule[src]

impl AsRef<Object> for CssGroupingRule[src]

impl Clone for CssGroupingRule[src]

impl Debug for CssGroupingRule[src]

impl Deref for CssGroupingRule[src]

type Target = CssRule

The resulting type after dereferencing.

impl Eq for CssGroupingRule[src]

impl From<CssConditionRule> for CssGroupingRule[src]

impl From<CssGroupingRule> for JsValue[src]

impl From<CssGroupingRule> for CssRule[src]

impl From<CssGroupingRule> for Object[src]

impl From<CssMediaRule> for CssGroupingRule[src]

impl From<CssSupportsRule> for CssGroupingRule[src]

impl From<JsValue> for CssGroupingRule[src]

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

impl OptionFromWasmAbi for CssGroupingRule[src]

impl OptionIntoWasmAbi for CssGroupingRule[src]

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

impl PartialEq<CssGroupingRule> for CssGroupingRule[src]

impl RefFromWasmAbi for CssGroupingRule[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<CssGroupingRule>

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

impl StructuralPartialEq for CssGroupingRule[src]

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