[][src]Trait webkit2gtk_webextension::DOMHTMLStyleElementExt

pub trait DOMHTMLStyleElementExt: 'static {
    fn get_disabled(&self) -> bool;
fn get_media(&self) -> Option<GString>;
fn get_sheet(&self) -> Option<DOMStyleSheet>;
fn get_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 get_property_type(&self) -> Option<GString>;
fn set_property_type(&self, type_: Option<&str>);
fn connect_property_disabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_media_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_sheet_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_disabled(&self) -> bool

fn get_media(&self) -> Option<GString>

fn get_sheet(&self) -> Option<DOMStyleSheet>

fn get_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 get_property_type(&self) -> Option<GString>

fn set_property_type(&self, type_: Option<&str>)

fn connect_property_disabled_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_media_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_sheet_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_type_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<DOMHTMLStyleElement>> DOMHTMLStyleElementExt for O[src]

Loading content...