[][src]Struct ssh2::ExitSignal

pub struct ExitSignal {
    pub exit_signal: Option<String>,
    pub error_message: Option<String>,
    pub lang_tag: Option<String>,
}

Data received from when a program exits with a signal.

Fields

exit_signal: Option<String>

The exit signal received, if the program did not exit cleanly. Does not contain a SIG prefix

error_message: Option<String>

Error message provided by the remote server (if any)

lang_tag: Option<String>

Language tag provided by the remote server (if any)

Auto Trait Implementations

impl Unpin for ExitSignal

impl Send for ExitSignal

impl Sync for ExitSignal

impl UnwindSafe for ExitSignal

impl RefUnwindSafe for ExitSignal

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]