Type Alias Error

Source
pub type Error = PartitionSimError;

Aliased Type§

pub enum Error {
    OpenSshError(Error),
    SessionUninitialized,
    PeerNotFound(Uuid),
    CommandFailed(i32),
    IoError(Error),
    ConsulError(String),
    SshCopyIdFailed,
    Other(String),
    UuidParseError(Error),
    CommandFailedWithOutput {
        status_code: i32,
        stderr: String,
        stdout: String,
    },
}

Variants§

§

OpenSshError(Error)

§

SessionUninitialized

§

PeerNotFound(Uuid)

§

CommandFailed(i32)

§

IoError(Error)

§

ConsulError(String)

§

SshCopyIdFailed

§

Other(String)

§

UuidParseError(Error)

§

CommandFailedWithOutput

Fields

§status_code: i32
§stderr: String
§stdout: String