Trait webkit2gtk_webextension::DOMStyleSheetExt[][src]

pub trait DOMStyleSheetExt {
    fn get_content_type(&self) -> Option<String>;
fn get_disabled(&self) -> bool;
fn get_href(&self) -> Option<String>;
fn get_media(&self) -> Option<DOMMediaList>;
fn get_owner_node(&self) -> Option<DOMNode>;
fn get_parent_style_sheet(&self) -> Option<DOMStyleSheet>;
fn get_title(&self) -> Option<String>;
fn set_disabled(&self, value: bool);
fn get_property_type(&self) -> Option<String>;
fn connect_property_disabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_href_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_owner_node_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_parent_style_sheet_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors