pub enum SshctlError {
CommandError(CommandError),
MuxError(MuxError),
IoError(Error),
}
Expand description
Error returned by ssh-muxcontrol library.
Variants§
Trait Implementations§
Source§impl Debug for SshctlError
impl Debug for SshctlError
Source§impl Display for SshctlError
impl Display for SshctlError
Source§impl From<CommandError> for SshctlError
impl From<CommandError> for SshctlError
Source§fn from(err: CommandError) -> Self
fn from(err: CommandError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SshctlError
impl From<Error> for SshctlError
Auto Trait Implementations§
impl Freeze for SshctlError
impl !RefUnwindSafe for SshctlError
impl Send for SshctlError
impl Sync for SshctlError
impl Unpin for SshctlError
impl !UnwindSafe for SshctlError
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