pub struct StopReport {
pub was_pid: Option<i32>,
pub was_running: bool,
pub sent_sigint: bool,
pub sent_sigkill: bool,
pub crashed: bool,
}Fields§
§was_pid: Option<i32>§was_running: bool§sent_sigint: bool§sent_sigkill: bool§crashed: boolTrait Implementations§
Source§impl Clone for StopReport
impl Clone for StopReport
Source§fn clone(&self) -> StopReport
fn clone(&self) -> StopReport
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StopReport
impl RefUnwindSafe for StopReport
impl Send for StopReport
impl Sync for StopReport
impl Unpin for StopReport
impl UnwindSafe for StopReport
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