pub trait DOMXPathExpressionExt: 'static {
    fn evaluate(
        &self,
        contextNode: &impl IsA<DOMNode>,
        type_: c_ushort,
        inResult: &impl IsA<DOMXPathResult>
    ) -> Result<DOMXPathResult, Error>; }
Expand description

Trait containing all DOMXPathExpression methods.

Implementors

DOMXPathExpression

Required Methods

Implementors