#[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,
}
Fields§
§cur: *const xmlChar
§base: *const xmlChar
§error: c_int
§context: xmlXPathContextPtr
§value: xmlXPathObjectPtr
§valueNr: c_int
§valueMax: c_int
§valueTab: *mut xmlXPathObjectPtr
§comp: xmlXPathCompExprPtr
§xptr: c_int
§ancestor: xmlNodePtr
§valueFrame: c_int
Trait Implementations§
Source§impl Clone for _xmlXPathParserContext
impl Clone for _xmlXPathParserContext
Source§fn clone(&self) -> _xmlXPathParserContext
fn clone(&self) -> _xmlXPathParserContext
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _xmlXPathParserContext
impl Debug for _xmlXPathParserContext
impl Copy for _xmlXPathParserContext
Auto Trait Implementations§
impl Freeze for _xmlXPathParserContext
impl RefUnwindSafe for _xmlXPathParserContext
impl !Send for _xmlXPathParserContext
impl !Sync for _xmlXPathParserContext
impl Unpin for _xmlXPathParserContext
impl UnwindSafe for _xmlXPathParserContext
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more