Enum thrussh::ChannelMsg[][src]

pub enum ChannelMsg {
    Data {
        data: CryptoVec,
    },
    ExtendedData {
        data: CryptoVec,
        ext: u32,
    },
    Eof,
    Close,
    XonXoff {
        client_can_do: bool,
    },
    ExitStatus {
        exit_status: u32,
    },
    ExitSignal {
        signal_name: Sig,
        core_dumped: bool,
        error_message: String,
        lang_tag: String,
    },
    WindowAdjusted {
        new_size: u32,
    },
    Success,
}

Variants

Data
Show fields

Fields of Data

data: CryptoVec
ExtendedData
Show fields

Fields of ExtendedData

data: CryptoVecext: u32
Eof
Close
XonXoff
Show fields

Fields of XonXoff

client_can_do: bool
ExitStatus
Show fields

Fields of ExitStatus

exit_status: u32
ExitSignal
Show fields

Fields of ExitSignal

signal_name: Sigcore_dumped: boolerror_message: Stringlang_tag: String
WindowAdjusted
Show fields

Fields of WindowAdjusted

new_size: u32
Success

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.