#[repr(C)]pub struct _xmlError {}Expand description
An object containing information about an error.
Fields§
§domain: c_intAn xmlErrorDomain value.
code: c_intThe error code, e.g. an xmlParserErrors.
message: *mut c_charHuman-readable error message.
level: xmlErrorLevelError level.
file: *mut c_charFilename if available
line: c_intLine number if available
str1: *mut c_charExtra string information.
str2: *mut c_charExtra string information.
str3: *mut c_charExtra string information.
int1: c_intExtra number information.
int2: c_intColumn number if available.
ctxt: *mut c_voidParser context if available
node: *mut c_voidNode if available
Trait Implementations§
Auto Trait Implementations§
impl !Send for _xmlError
impl !Sync for _xmlError
impl Freeze for _xmlError
impl RefUnwindSafe for _xmlError
impl Unpin for _xmlError
impl UnsafeUnpin for _xmlError
impl UnwindSafe for _xmlError
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