[][src]Enum graph_error::GraphRsError

pub enum GraphRsError {
    DownloadDirNoExists {
        dir: String,
    },
    DownloadFileExists {
        name: String,
    },
    DownloadFileName,
    FileNameInvalidUTF8,
    InvalidOrMissing {
        msg: String,
    },
    InvalidFileExtension {
        requires: String,
        found: String,
    },
}

Variants

DownloadDirNoExists

Fields of DownloadDirNoExists

dir: String
DownloadFileExists

Fields of DownloadFileExists

name: String
DownloadFileName
FileNameInvalidUTF8
InvalidOrMissing

Fields of InvalidOrMissing

msg: String
InvalidFileExtension

Fields of InvalidFileExtension

requires: Stringfound: String

Trait Implementations

impl AsRes<GraphRsError> for GraphRsError[src]

impl Debug for GraphRsError[src]

impl Display for GraphRsError[src]

impl Error for GraphRsError where
    Self: Debug + Display
[src]

impl ErrorCompat for GraphRsError[src]

impl From<GraphRsError> for GraphFailure[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsErrorSource for T where
    T: 'static + Error
[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> Instrument for T[src]

impl<T> Instrument 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.