Struct libxml::bindings::_xmlError[][src]

#[repr(C)]pub struct _xmlError {
    pub domain: c_int,
    pub code: c_int,
    pub message: *mut c_char,
    pub level: xmlErrorLevel,
    pub file: *mut c_char,
    pub line: c_int,
    pub str1: *mut c_char,
    pub str2: *mut c_char,
    pub str3: *mut c_char,
    pub int1: c_int,
    pub int2: c_int,
    pub ctxt: *mut c_void,
    pub node: *mut c_void,
}

Fields

domain: c_intcode: c_intmessage: *mut c_charlevel: xmlErrorLevelfile: *mut c_charline: c_intstr1: *mut c_charstr2: *mut c_charstr3: *mut c_charint1: c_intint2: c_intctxt: *mut c_voidnode: *mut c_void

Trait Implementations

impl Clone for _xmlError[src]

impl Copy for _xmlError[src]

impl Debug for _xmlError[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlError

impl !Send for _xmlError

impl !Sync for _xmlError

impl Unpin for _xmlError

impl UnwindSafe for _xmlError

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.