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

cur: *const xmlCharbase: *const xmlCharerror: c_intcontext: xmlXPathContextPtrvalue: xmlXPathObjectPtrvalueNr: c_intvalueMax: c_intvalueTab: *mut xmlXPathObjectPtrcomp: xmlXPathCompExprPtrxptr: c_intancestor: xmlNodePtrvalueFrame: c_int

Trait Implementations

impl Clone for _xmlXPathParserContext[src]

impl Copy for _xmlXPathParserContext[src]

impl Debug for _xmlXPathParserContext[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlXPathParserContext

impl !Send for _xmlXPathParserContext

impl !Sync for _xmlXPathParserContext

impl Unpin for _xmlXPathParserContext

impl UnwindSafe for _xmlXPathParserContext

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.