[][src]Enum libvplan::error::ParsingError

pub enum ParsingError {
    DocumentParsingError(Error),
    DateParsingError(String),
}

An error occuring during parsing.

Variants

DocumentParsingError(Error)

Error parsing actual XML. This might indicate something on the original documents changed.

DateParsingError(String)

Error indicating a failure to parse dates from the XML.

Trait Implementations

impl Debug for ParsingError[src]

impl Display for ParsingError[src]

Auto Trait Implementations

impl !RefUnwindSafe for ParsingError

impl Send for ParsingError

impl !Sync for ParsingError

impl Unpin for ParsingError

impl !UnwindSafe for ParsingError

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> 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.