pub struct ExecSignal {
pub signal: i32,
}Expand description
Request to send a signal to a running command.
Fields§
§signal: i32The signal number to send (e.g. 15 for SIGTERM).
Trait Implementations§
Source§impl Clone for ExecSignal
impl Clone for ExecSignal
Source§fn clone(&self) -> ExecSignal
fn clone(&self) -> ExecSignal
Returns a duplicate 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 moreSource§impl Debug for ExecSignal
impl Debug for ExecSignal
Source§impl<'de> Deserialize<'de> for ExecSignal
impl<'de> Deserialize<'de> for ExecSignal
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecSignal
impl RefUnwindSafe for ExecSignal
impl Send for ExecSignal
impl Sync for ExecSignal
impl Unpin for ExecSignal
impl UnsafeUnpin for ExecSignal
impl UnwindSafe for ExecSignal
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