[][src]Trait webkit2gtk_webextension::DOMHTMLFormElementExt

pub trait DOMHTMLFormElementExt: 'static {
    fn get_accept_charset(&self) -> Option<GString>;
fn get_action(&self) -> Option<GString>;
fn get_elements(&self) -> Option<DOMHTMLCollection>;
fn get_encoding(&self) -> Option<GString>;
fn get_enctype(&self) -> Option<GString>;
fn get_length(&self) -> c_long;
fn get_method(&self) -> Option<GString>;
fn get_name(&self) -> Option<GString>;
fn get_target(&self) -> Option<GString>;
fn reset(&self);
fn set_accept_charset(&self, value: &str);
fn set_action(&self, value: &str);
fn set_encoding(&self, value: &str);
fn set_enctype(&self, value: &str);
fn set_method(&self, value: &str);
fn set_name(&self, value: &str);
fn set_target(&self, value: &str);
fn submit(&self);
fn connect_property_accept_charset_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_action_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_elements_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_encoding_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_enctype_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_method_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_target_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

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

fn get_elements(&self) -> Option<DOMHTMLCollection>

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

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

fn get_length(&self) -> c_long

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

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

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

fn reset(&self)

fn set_accept_charset(&self, value: &str)

fn set_action(&self, value: &str)

fn set_encoding(&self, value: &str)

fn set_enctype(&self, value: &str)

fn set_method(&self, value: &str)

fn set_name(&self, value: &str)

fn set_target(&self, value: &str)

fn submit(&self)

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<DOMHTMLFormElement>> DOMHTMLFormElementExt for O[src]

Loading content...