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
Required Methods
sourcefn detach(&self)
fn detach(&self)
Deprecated since 2.22
Use JavaScriptCore API instead
sourcefn expands_entity_references(&self) -> bool
fn expands_entity_references(&self) -> bool
This function has been removed from the DOM spec and it just returns false
.
Deprecated since 2.12
Returns
A gboolean
*