pub trait DOMTreeWalkerExt: 'static {
Show 17 methods fn first_child(&self) -> Option<DOMNode>; fn current_node(&self) -> Option<DOMNode>; fn expands_entity_references(&self) -> bool; fn filter(&self) -> Option<DOMNodeFilter>; fn root(&self) -> Option<DOMNode>; fn what_to_show(&self) -> c_ulong; fn last_child(&self) -> Option<DOMNode>; fn next_node(&self) -> Option<DOMNode>; fn next_sibling(&self) -> Option<DOMNode>; fn parent_node(&self) -> Option<DOMNode>; fn previous_node(&self) -> Option<DOMNode>; fn previous_sibling(&self) -> Option<DOMNode>; fn set_current_node(&self, value: &impl IsA<DOMNode>) -> Result<(), Error>; fn connect_current_node_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_filter_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 DOMTreeWalker methods.

Implementors

DOMTreeWalker

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

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 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

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 DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

value

A DOMNode

Implementors