[][src]Struct xml::ParserError

pub struct ParserError {
    pub line: u32,
    pub col: u32,
    pub msg: &'static str,
}

The structure returned, when erroneous XML is read

Fields

line: u32

The line number at which the error occurred

col: u32

The column number at which the error occurred

msg: &'static str

A message describing the type of the error

Trait Implementations

impl Clone for ParserError[src]

impl Debug for ParserError[src]

impl Display for ParserError[src]

impl Error for ParserError[src]

impl From<ParserError> for BuilderError[src]

impl PartialEq<ParserError> for ParserError[src]

impl StructuralPartialEq for ParserError[src]

Auto Trait Implementations

impl RefUnwindSafe for ParserError

impl Send for ParserError

impl Sync for ParserError

impl Unpin for ParserError

impl UnwindSafe for ParserError

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> ToString for T where
    T: Display + ?Sized
[src]

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.