[−][src]Enum hrx::HrxError
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
No valid HRX boundary found
Parse(ParseError)
An error occured during parsing
BodyContainsBoundary(Vec<ErroneousBodyPath>)
Some body
s were made to contain the archive boundary. Deserialising the archive wouldn't work as expected
DuplicateEntry(String)
Two entries share the same path
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]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn description(&self) -> &str
1.0.0[src]
fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl From<ErroneousBodyPath> for HrxError
[src]
fn from(bcb: ErroneousBodyPath) -> HrxError
[src]
impl From<ParseError> for HrxError
[src]
fn from(pe: ParseError) -> 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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,