pub enum KillSignal<'s> {
None,
SIGKILL,
SIGTERM,
Message(&'s str),
Code(u32),
}
Variants§
Auto Trait Implementations§
impl<'s> Freeze for KillSignal<'s>
impl<'s> RefUnwindSafe for KillSignal<'s>
impl<'s> Send for KillSignal<'s>
impl<'s> Sync for KillSignal<'s>
impl<'s> Unpin for KillSignal<'s>
impl<'s> UnwindSafe for KillSignal<'s>
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