[][src]Struct arwa::html::HtmlStyleElement

pub struct HtmlStyleElement { /* fields omitted */ }

Methods

impl HtmlStyleElement[src]

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

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

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

pub fn set_media(&self, media: &str)[src]

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

pub fn set_mime_type(&self, mime_type: &str)[src]

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

Trait Implementations

impl AsRef<Element> for HtmlStyleElement[src]

impl AsRef<EventTarget> for HtmlStyleElement[src]

impl AsRef<HtmlElement> for HtmlStyleElement[src]

impl AsRef<HtmlStyleElement> for HtmlStyleElement[src]

impl AsRef<Node> for HtmlStyleElement[src]

impl Clone for HtmlStyleElement[src]

impl Element for HtmlStyleElement[src]

impl From<HtmlStyleElement> for HtmlStyleElement[src]

impl From<HtmlStyleElement> for GenericHtmlElement[src]

impl From<HtmlStyleElement> for GenericElement[src]

impl From<HtmlStyleElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlStyleElement[src]

impl HtmlElement for HtmlStyleElement[src]

impl Node for HtmlStyleElement[src]

impl TryFrom<GenericElement> for HtmlStyleElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlStyleElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlStyleElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

impl Write for HtmlStyleElement[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> 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.