pub trait DOMHTMLLIElementExt: 'static {
    fn type_attr(&self) -> Option<GString>;
    fn value(&self) -> c_long;
    fn set_type_attr(&self, value: &str);
    fn set_value(&self, value: c_long);
    fn type_(&self) -> Option<GString>;
    fn set_type(&self, type_: Option<&str>);
    fn connect_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all DOMHTMLLIElement methods.

Implementors

DOMHTMLLIElement

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A glong

Implementors