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
Trait containing all DOMHTMLCollection
methods.