Struct dochy_archiver::error::NouArcError[][src]

pub struct NouArcError { /* fields omitted */ }

The error type.

This wraps anyhow::Error. You can get it from Into trait.

Maybe the source error retrieved from anyhow::Error can be used to determine the cause of the error, but currently, there's no guarantees about the error format.

I deeply depend on anyhow::Error::backtrace for debugging.

Implementations

impl NouArcError[src]

pub fn new(e: impl Into<Error>) -> Self[src]

Trait Implementations

impl Debug for NouArcError[src]

impl Display for NouArcError[src]

impl From<Error> for NouArcError[src]

impl From<Error> for NouArcError[src]

impl From<FromUtf8Error> for NouArcError[src]

impl From<NoneError> for NouArcError[src]

impl From<StripPrefixError> for NouArcError[src]

impl From<SystemTimeError> for NouArcError[src]

impl From<WcsError> for NouArcError[src]

impl Into<Error> for NouArcError[src]

Auto Trait Implementations

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.