pub trait DOMAttrExt: 'static {
Show 18 methods fn local_name(&self) -> Option<GString>; fn name(&self) -> Option<GString>; fn namespace_uri(&self) -> Option<GString>; fn owner_element(&self) -> Option<DOMElement>; fn prefix(&self) -> Option<GString>; fn is_specified(&self) -> bool; fn value(&self) -> Option<GString>; fn set_value(&self, value: &str) -> Result<(), Error>; fn get_property_local_name(&self) -> Option<GString>; fn get_property_namespace_uri(&self) -> Option<GString>; fn get_property_prefix(&self) -> Option<GString>; fn connect_local_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_namespace_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_owner_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_prefix_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_specified_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 DOMAttr methods.

Implementors

DOMAttr

Required Methods

Available on crate feature v2_14 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Available on crate feature v2_14 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMElement

Available on crate feature v2_14 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors