pub enum AsyncSftpManagerError {
AsyncSessionManagerError(AsyncSessionManagerError),
OpenError(Error),
}Variants§
AsyncSessionManagerError(AsyncSessionManagerError)
OpenError(Error)
Trait Implementations§
Source§impl Debug for AsyncSftpManagerError
impl Debug for AsyncSftpManagerError
Source§impl Display for AsyncSftpManagerError
impl Display for AsyncSftpManagerError
Source§impl Error for AsyncSftpManagerError
impl Error for AsyncSftpManagerError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for AsyncSftpManagerError
impl !UnwindSafe for AsyncSftpManagerError
impl Freeze for AsyncSftpManagerError
impl Send for AsyncSftpManagerError
impl Sync for AsyncSftpManagerError
impl Unpin for AsyncSftpManagerError
impl UnsafeUnpin for AsyncSftpManagerError
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