Struct libxml::bindings::_xmlXPathParserContext[][src]

#[repr(C)]
pub struct _xmlXPathParserContext { pub cur: *const xmlChar, pub base: *const xmlChar, pub error: c_int, pub context: xmlXPathContextPtr, pub value: xmlXPathObjectPtr, pub valueNr: c_int, pub valueMax: c_int, pub valueTab: *mut xmlXPathObjectPtr, pub comp: xmlXPathCompExprPtr, pub xptr: c_int, pub ancestor: xmlNodePtr, pub valueFrame: c_int, }

xmlXPathParserContext:

An XPath parser context. It contains pure parsing informations, an xmlXPathContext, and the stack of objects.

Fields

Trait Implementations

impl Debug for _xmlXPathParserContext
[src]

Formats the value using the given formatter. Read more

impl Copy for _xmlXPathParserContext
[src]

impl Clone for _xmlXPathParserContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations