pub trait DOMXPathResultExt: 'static {
Show 16 methods fn boolean_value(&self) -> Result<(), Error>; fn is_invalid_iterator_state(&self) -> bool; fn number_value(&self) -> Result<f64, Error>; fn result_type(&self) -> c_ushort; fn single_node_value(&self) -> Result<DOMNode, Error>; fn snapshot_length(&self) -> Result<c_ulong, Error>; fn string_value(&self) -> Result<GString, Error>; fn iterate_next(&self) -> Result<DOMNode, Error>; fn snapshot_item(&self, index: c_ulong) -> Result<DOMNode, Error>; fn connect_boolean_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_invalid_iterator_state_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_number_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_result_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_single_node_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_snapshot_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_string_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Trait containing all DOMXPathResult methods.

Implementors

DOMXPathResult

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gdouble

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gushort

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 gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMNode

Deprecated since 2.22

Use JavaScriptCore API instead

index

A gulong

Returns

A DOMNode

Implementors