pub trait DOMHTMLStyleElementExt: 'static {
Show 13 methods fn is_disabled(&self) -> bool; fn media(&self) -> Option<GString>; fn sheet(&self) -> Option<DOMStyleSheet>; fn type_attr(&self) -> Option<GString>; fn set_disabled(&self, value: bool); fn set_media(&self, value: &str); fn set_type_attr(&self, value: &str); fn type_(&self) -> Option<GString>; fn set_type(&self, type_: Option<&str>); fn connect_disabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_media_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_sheet_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMStyleSheet

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors