Enum tugger_debian::DebError[][src]

pub enum DebError {
    IoError(Error),
    PathError(String),
    FileManifestError(FileManifestError),
}

Represents an error related to .deb file handling.

Variants

IoError(Error)
PathError(String)
FileManifestError(FileManifestError)

Trait Implementations

impl Debug for DebError[src]

impl Display for DebError[src]

impl Error for DebError[src]

impl From<Error> for DebError[src]

impl From<FileManifestError> for DebError[src]

impl<W> From<IntoInnerError<W>> for DebError[src]

Auto Trait Implementations

impl !RefUnwindSafe for DebError

impl Send for DebError

impl Sync for DebError

impl Unpin for DebError

impl !UnwindSafe for DebError

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.