pub trait DOMNodeIteratorExt: 'static {
Show 14 methods fn detach(&self); fn expands_entity_references(&self) -> bool; fn filter(&self) -> Option<DOMNodeFilter>; fn is_pointer_before_reference_node(&self) -> bool; fn reference_node(&self) -> Option<DOMNode>; fn root(&self) -> Option<DOMNode>; fn what_to_show(&self) -> c_ulong; fn next_node(&self) -> Result<DOMNode, Error>; fn previous_node(&self) -> Result<DOMNode, Error>; fn connect_filter_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_pointer_before_reference_node_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_reference_node_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_root_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_what_to_show_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Trait containing all DOMNodeIterator methods.

Implementors

DOMNodeIterator

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

This function has been removed from the DOM spec and it just returns false.

Deprecated since 2.12
Returns

A gboolean *

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNodeFilter

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gulong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Implementors