Enum graph_error::GraphRsError
source · pub enum GraphRsError {
DownloadDirNoExists {
dir: String,
},
DownloadFileExists {
name: String,
},
DownloadFileName,
FileNameInvalidUTF8,
InvalidOrMissing {
msg: String,
},
InvalidFileExtension {
requires: String,
found: String,
},
}
Variants§
DownloadDirNoExists
DownloadFileExists
DownloadFileName
FileNameInvalidUTF8
InvalidOrMissing
InvalidFileExtension
Trait Implementations§
source§impl Debug for GraphRsError
impl Debug for GraphRsError
source§impl Display for GraphRsError
impl Display for GraphRsError
source§impl Error for GraphRsError
impl Error for GraphRsError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<GraphRsError> for GraphFailure
impl From<GraphRsError> for GraphFailure
source§fn from(source: GraphRsError) -> Self
fn from(source: GraphRsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GraphRsError
impl RefUnwindSafe for GraphRsError
impl Send for GraphRsError
impl Sync for GraphRsError
impl Unpin for GraphRsError
impl UnwindSafe for GraphRsError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more