pub struct SignalState {
pub signal_name: Option<String>,
pub core_dumped: bool,
pub error_message: Option<String>,
pub language: Option<String>,
}
Fields§
§signal_name: Option<String>
§core_dumped: bool
§error_message: Option<String>
§language: Option<String>
Trait Implementations§
Source§impl Clone for SignalState
impl Clone for SignalState
Source§fn clone(&self) -> SignalState
fn clone(&self) -> SignalState
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 SignalState
impl RefUnwindSafe for SignalState
impl Send for SignalState
impl Sync for SignalState
impl Unpin for SignalState
impl UnwindSafe for SignalState
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