pub enum FileDetectionError {
UnknownFileType,
IoError(Error),
InvalidPath,
}
Variants§
UnknownFileType
File type could not be determined
IoError(Error)
IO error reading file
InvalidPath
Invalid file path
Trait Implementations§
Source§impl Debug for FileDetectionError
impl Debug for FileDetectionError
Source§impl Display for FileDetectionError
impl Display for FileDetectionError
Source§impl Error for FileDetectionError
impl Error for FileDetectionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<Error> for FileDetectionError
impl From<Error> for FileDetectionError
Source§impl From<FileDetectionError> for ExifError
impl From<FileDetectionError> for ExifError
Source§fn from(source: FileDetectionError) -> Self
fn from(source: FileDetectionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FileDetectionError
impl !RefUnwindSafe for FileDetectionError
impl Send for FileDetectionError
impl Sync for FileDetectionError
impl Unpin for FileDetectionError
impl !UnwindSafe for FileDetectionError
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