pub trait DOMHTMLCollectionExt: 'static {
    fn length(&self) -> c_ulong;
    fn item(&self, index: c_ulong) -> Option<DOMNode>;
    fn named_item(&self, name: &str) -> Option<DOMNode>;
    fn connect_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gulong

Deprecated since 2.22

Use JavaScriptCore API instead

index

A gulong

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

name

A gchar

Returns

A DOMNode

Implementors