pub enum CliSessionExit<'g> {
Status(u32),
Signal(ExitSignal<'g>),
}Variants§
Status(u32)
Remote process exited with an exit status code
Signal(ExitSignal<'g>)
Remote process exited by signal
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'g> Freeze for CliSessionExit<'g>
impl<'g> RefUnwindSafe for CliSessionExit<'g>
impl<'g> Send for CliSessionExit<'g>
impl<'g> Sync for CliSessionExit<'g>
impl<'g> Unpin for CliSessionExit<'g>
impl<'g> UnwindSafe for CliSessionExit<'g>
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