[][src]Trait webkit2gtk_webextension::DOMHTMLScriptElementExt

pub trait DOMHTMLScriptElementExt: 'static {
    fn get_charset(&self) -> Option<GString>;
fn get_defer(&self) -> bool;
fn get_event(&self) -> Option<GString>;
fn get_html_for(&self) -> Option<GString>;
fn get_src(&self) -> Option<GString>;
fn get_text(&self) -> Option<GString>;
fn get_type_attr(&self) -> Option<GString>;
fn set_defer(&self, value: bool);
fn set_event(&self, value: &str);
fn set_html_for(&self, value: &str);
fn set_src(&self, value: &str);
fn set_text(&self, value: &str);
fn set_type_attr(&self, value: &str);
fn set_property_charset(&self, charset: Option<&str>);
fn get_property_type(&self) -> Option<GString>;
fn set_property_type(&self, type_: Option<&str>);
fn connect_property_charset_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_defer_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_event_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_html_for_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_src_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_text_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_charset(&self) -> Option<GString>

fn get_defer(&self) -> bool

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

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

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

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

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

fn set_defer(&self, value: bool)

fn set_event(&self, value: &str)

fn set_html_for(&self, value: &str)

fn set_src(&self, value: &str)

fn set_text(&self, value: &str)

fn set_type_attr(&self, value: &str)

fn set_property_charset(&self, charset: Option<&str>)

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

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

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

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

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

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

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

fn connect_property_text_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<DOMHTMLScriptElement>> DOMHTMLScriptElementExt for O[src]

Loading content...