[][src]Enum folia::error::FoliaError

pub enum FoliaError {
    IoError(Error),
    XmlError(Error),
    ParseError(String),
    SerialisationError(String),
    ValidationError(String),
    InternalError(String),
    EncodeError(String),
    KeyError(String),
    QueryError(String),
    TypeError(String),
    NoTextError(String),
    IndexError,
}

Variants

IoError(Error)

Indicates problems with the input/output (disk full? file not found?)

XmlError(Error)

Parse errors indicate invalid XML

ParseError(String)

Parse errors occur if there is a problem while parsing the input and is often indicative of invalidly formatted input.

SerialisationError(String)

Serialisation errors occur if there is a problem during serialisation

ValidationError(String)

Validation errors occur when the FoLiA is not consistent, they are a level beyond Parse Errors

InternalError(String)

Internal errors should never occur

EncodeError(String)
KeyError(String)
QueryError(String)
TypeError(String)
NoTextError(String)
IndexError

Methods

impl FoliaError[src]

Trait Implementations

impl From<FoliaError> for String[src]

impl From<Error> for FoliaError[src]

impl From<Error> for FoliaError[src]

impl Display for FoliaError[src]

impl Debug for FoliaError[src]

impl Error for FoliaError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]