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

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

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.