Struct libxml::bindings::_xmlValidCtxt[][src]

#[repr(C)]pub struct _xmlValidCtxt {
    pub userData: *mut c_void,
    pub error: xmlValidityErrorFunc,
    pub warning: xmlValidityWarningFunc,
    pub node: xmlNodePtr,
    pub nodeNr: c_int,
    pub nodeMax: c_int,
    pub nodeTab: *mut xmlNodePtr,
    pub finishDtd: c_uint,
    pub doc: xmlDocPtr,
    pub valid: c_int,
    pub vstate: *mut xmlValidState,
    pub vstateNr: c_int,
    pub vstateMax: c_int,
    pub vstateTab: *mut xmlValidState,
    pub am: xmlAutomataPtr,
    pub state: xmlAutomataStatePtr,
}

Fields

userData: *mut c_voiderror: xmlValidityErrorFuncwarning: xmlValidityWarningFuncnode: xmlNodePtrnodeNr: c_intnodeMax: c_intnodeTab: *mut xmlNodePtrfinishDtd: c_uintdoc: xmlDocPtrvalid: c_intvstate: *mut xmlValidStatevstateNr: c_intvstateMax: c_intvstateTab: *mut xmlValidStateam: xmlAutomataPtrstate: xmlAutomataStatePtr

Trait Implementations

impl Clone for _xmlValidCtxt[src]

impl Copy for _xmlValidCtxt[src]

impl Debug for _xmlValidCtxt[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlValidCtxt

impl !Send for _xmlValidCtxt

impl !Sync for _xmlValidCtxt

impl Unpin for _xmlValidCtxt

impl UnwindSafe for _xmlValidCtxt

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.