[][src]Enum hrx::HrxError

pub enum HrxError {
    NoBoundary,
    Parse(ParseError),
    BodyContainsBoundary(Vec<ErroneousBodyPath>),
    DuplicateEntry(String),
    FileAsDirectory(StringString),
}

Generic error type, encompassing more precise errors.

Examples

assert_eq!(HrxArchive::from_str("Not an actual archive, missing a boundary"),
           Err(HrxError::NoBoundary));

let err = HrxArchive::from_str("<====>no space before").unwrap_err();
assert_eq!(err, HrxError::Parse(ParseError {
    line: 1,
    column: 7,
    offset: 6,
    expected: vec![" ", "\n"].into_iter().collect(),
}));
assert_eq!(err.to_string(), r#"Parse failed at 1:7 [position 6]: expected "\n", or " "."#);

Variants

NoBoundary

No valid HRX boundary found

Parse(ParseError)

An error occured during parsing

BodyContainsBoundary(Vec<ErroneousBodyPath>)

Some bodys were made to contain the archive boundary. Deserialising the archive wouldn't work as expected

DuplicateEntry(String)

Two entries share the same path

FileAsDirectory(StringString)

An entry attempted to use a file as a directory

Trait Implementations

impl Clone for HrxError[src]

impl Debug for HrxError[src]

impl Display for HrxError[src]

impl Eq for HrxError[src]

impl Error for HrxError[src]

impl From<ErroneousBodyPath> for HrxError[src]

impl From<ParseError> for HrxError[src]

impl<V: Into<Vec<ErroneousBodyPath>>> From<V> for HrxError[src]

impl PartialEq<HrxError> for HrxError[src]

impl StructuralEq for HrxError[src]

impl StructuralPartialEq for HrxError[src]

Auto Trait Implementations

impl RefUnwindSafe for HrxError

impl Send for HrxError

impl Sync for HrxError

impl Unpin for HrxError

impl UnwindSafe for HrxError

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.