pub trait DOMHTMLMapElementExt: 'static {
    fn areas(&self) -> Option<DOMHTMLCollection>;
    fn name(&self) -> Option<GString>;
    fn set_name(&self, value: &str);
    fn connect_areas_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all DOMHTMLMapElement methods.

Implementors

DOMHTMLMapElement

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLCollection

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors