[][src]Trait webkit2gtk_webextension::DOMXPathResultExt

pub trait DOMXPathResultExt: 'static {
    fn get_boolean_value(&self) -> Result<(), Error>;
fn get_invalid_iterator_state(&self) -> bool;
fn get_number_value(&self) -> Result<f64, Error>;
fn get_result_type(&self) -> c_ushort;
fn get_single_node_value(&self) -> Result<DOMNode, Error>;
fn get_snapshot_length(&self) -> Result<c_ulong, Error>;
fn get_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_property_boolean_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_invalid_iterator_state_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_number_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_result_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_single_node_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_snapshot_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_string_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_boolean_value(&self) -> Result<(), Error>

fn get_invalid_iterator_state(&self) -> bool

fn get_number_value(&self) -> Result<f64, Error>

fn get_result_type(&self) -> c_ushort

fn get_single_node_value(&self) -> Result<DOMNode, Error>

fn get_snapshot_length(&self) -> Result<c_ulong, Error>

fn get_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_property_boolean_value_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_invalid_iterator_state_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_number_value_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_result_type_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_single_node_value_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_snapshot_length_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_string_value_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<DOMXPathResult>> DOMXPathResultExt for O[src]

Loading content...