[][src]Struct web_sys::StyleSheet

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

The StyleSheet class.

MDN Documentation

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

Methods

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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

impl StyleSheet[src]

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<JsValue> for StyleSheet[src]

impl AsRef<Object> for StyleSheet[src]

impl AsRef<StyleSheet> for CssStyleSheet[src]

impl AsRef<StyleSheet> for StyleSheet[src]

impl Clone for StyleSheet[src]

impl Debug for StyleSheet[src]

impl Deref for StyleSheet[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for StyleSheet[src]

impl From<CssStyleSheet> for StyleSheet[src]

impl From<JsValue> for StyleSheet[src]

impl From<StyleSheet> for JsValue[src]

impl From<StyleSheet> for Object[src]

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

impl OptionFromWasmAbi for StyleSheet[src]

impl OptionIntoWasmAbi for StyleSheet[src]

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

impl PartialEq<StyleSheet> for StyleSheet[src]

impl RefFromWasmAbi for StyleSheet[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<StyleSheet>

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

impl StructuralPartialEq for StyleSheet[src]

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