omnisor 0.1.1

Omnisor is an asynchronous high-level SSH client library for Rust, with specialized support for network devices.
Documentation
use std::io;

// use thiserror::Error;
use tokio::sync::mpsc;

/// This is the `thiserror` error for all crate errors.
///
/// Most ssh related error is wrapped in the `SshError` variant,
/// giving access to the underlying [`russh::Error`] type.
#[derive(thiserror::Error, Debug)]
#[non_exhaustive]
pub enum Error {
    #[error("Keyboard-interactive authentication failed")]
    KeyboardInteractiveAuthFailed,
    #[error("No keyboard-interactive response for prompt: {0}")]
    KeyboardInteractiveNoResponseForPrompt(String),
    #[error("Key authentication failed")]
    KeyAuthFailed,
    #[error("Unable to load key, bad format or passphrase: {0}")]
    KeyInvalid(russh::keys::Error),
    #[error("Password authentication failed")]
    PasswordWrong,
    #[error("Invalid address was provided: {0}")]
    AddressInvalid(io::Error),
    #[error("The executed command didn't send an exit code")]
    CommandDidntExit,
    #[error("Server check failed")]
    ServerCheckFailed,
    #[error("Ssh error occured: {0}")]
    SshError(#[from] russh::Error),
    #[error("Send error")]
    SendError(#[from] russh::SendError),
    #[error("Agent auth error")]
    AgentAuthError(#[from] russh::AgentAuthError),
    #[error("Failed to connect to SSH agent")]
    AgentConnectionFailed,
    #[error("Failed to request identities from SSH agent")]
    AgentRequestIdentitiesFailed,
    #[error("SSH agent has no identities")]
    AgentNoIdentities,
    #[error("SSH agent authentication failed")]
    AgentAuthenticationFailed,
    #[error("SFTP error occured: {0}")]
    SftpError(#[from] russh_sftp::client::error::Error),
    #[error("I/O error")]
    IoError(#[from] io::Error),
    #[error("Channel send error")]
    ChannelSendError(#[from] mpsc::error::SendError<Vec<u8>>),
    #[error("Invalid prompt pattern: {0}")]
    InvalidPromptPattern(String),
    #[error("Device command timed out waiting for prompt")]
    DeviceTimeout,
    #[error("Device session was closed unexpectedly")]
    DeviceSessionClosed,
    #[error("Invalid address: {0}")]
    InvalidAddress(String),
    #[error("EnableModePasswordFailed")]
    EnableModePasswordFailed,
    #[error("EnableModeCommandFailed")]
    EnableModeCommandFailed,
    #[error("EnableCommandDidntExit")]
    EnableCommandDidntExit,
    #[error("ConfigCommandDidntExit")]
    ConfigCommandDidntExit,
}