pub enum InternalError {
FileDirNotFound,
FileError(Error),
ParseError(ParseIntError),
SendError(SendError<RecvMsg>),
WalkdirError(Error),
FtpError(FtpError),
}
Variants§
FileDirNotFound
FileError(Error)
ParseError(ParseIntError)
SendError(SendError<RecvMsg>)
WalkdirError(Error)
FtpError(FtpError)
Trait Implementations§
Source§impl Debug for InternalError
impl Debug for InternalError
Source§impl Display for InternalError
impl Display for InternalError
Source§impl Error for InternalError
impl Error for InternalError
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 InternalError
impl From<Error> for InternalError
Source§impl From<Error> for InternalError
impl From<Error> for InternalError
Source§impl From<FtpError> for InternalError
impl From<FtpError> for InternalError
Source§impl From<ParseIntError> for InternalError
impl From<ParseIntError> for InternalError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InternalError
impl !RefUnwindSafe for InternalError
impl Send for InternalError
impl Sync for InternalError
impl Unpin for InternalError
impl !UnwindSafe for InternalError
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