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§
impl Freeze for ExitSignal
impl RefUnwindSafe for ExitSignal
impl Send for ExitSignal
impl Sync for ExitSignal
impl Unpin for ExitSignal
impl UnwindSafe for ExitSignal
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more