pub struct SignalKind(_);
Expand description
Represents the specific kind of signal to listen for.
Implementations
impl SignalKind
impl SignalKind
pub fn from_raw(signum: i32) -> SignalKind
pub fn from_raw(signum: i32) -> SignalKind
Allows for listening to any valid OS signal.
For example, this can be used for listening for platform-specific signals.
// let signum = libc::OS_SPECIFIC_SIGNAL;
let kind = SignalKind::from_raw(signum);
pub fn as_raw_value(&self) -> i32
pub fn as_raw_value(&self) -> i32
Get the signal’s numeric value.
let kind = SignalKind::interrupt();
assert_eq!(kind.as_raw_value(), libc::SIGINT);
pub fn alarm() -> SignalKind
pub fn alarm() -> SignalKind
Represents the SIGALRM signal.
On Unix systems this signal is sent when a real-time timer has expired. By default, the process is terminated by this signal.
pub fn child() -> SignalKind
pub fn child() -> SignalKind
Represents the SIGCHLD signal.
On Unix systems this signal is sent when the status of a child process has changed. By default, this signal is ignored.
pub fn hangup() -> SignalKind
pub fn hangup() -> SignalKind
Represents the SIGHUP signal.
On Unix systems this signal is sent when the terminal is disconnected. By default, the process is terminated by this signal.
pub fn interrupt() -> SignalKind
pub fn interrupt() -> SignalKind
Represents the SIGINT signal.
On Unix systems this signal is sent to interrupt a program. By default, the process is terminated by this signal.
pub fn io() -> SignalKind
pub fn io() -> SignalKind
Represents the SIGIO signal.
On Unix systems this signal is sent when I/O operations are possible on some file descriptor. By default, this signal is ignored.
pub fn pipe() -> SignalKind
pub fn pipe() -> SignalKind
Represents the SIGPIPE signal.
On Unix systems this signal is sent when the process attempts to write to a pipe which has no reader. By default, the process is terminated by this signal.
pub fn quit() -> SignalKind
pub fn quit() -> SignalKind
Represents the SIGQUIT signal.
On Unix systems this signal is sent to issue a shutdown of the process, after which the OS will dump the process core. By default, the process is terminated by this signal.
pub fn terminate() -> SignalKind
pub fn terminate() -> SignalKind
Represents the SIGTERM signal.
On Unix systems this signal is sent to issue a shutdown of the process. By default, the process is terminated by this signal.
pub fn user_defined1() -> SignalKind
pub fn user_defined1() -> SignalKind
Represents the SIGUSR1 signal.
On Unix systems this is a user defined signal. By default, the process is terminated by this signal.
pub fn user_defined2() -> SignalKind
pub fn user_defined2() -> SignalKind
Represents the SIGUSR2 signal.
On Unix systems this is a user defined signal. By default, the process is terminated by this signal.
pub fn window_change() -> SignalKind
pub fn window_change() -> SignalKind
Represents the SIGWINCH signal.
On Unix systems this signal is sent when the terminal window is resized. By default, this signal is ignored.
Trait Implementations
impl Clone for SignalKind
impl Clone for SignalKind
fn clone(&self) -> SignalKind
fn clone(&self) -> SignalKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for SignalKind
impl Debug for SignalKind
impl From<i32> for SignalKind
impl From<i32> for SignalKind
fn from(signum: i32) -> SignalKind
fn from(signum: i32) -> SignalKind
Converts to this type from the input type.
impl Hash for SignalKind
impl Hash for SignalKind
impl PartialEq<SignalKind> for SignalKind
impl PartialEq<SignalKind> for SignalKind
fn eq(&self, other: &SignalKind) -> bool
fn eq(&self, other: &SignalKind) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &SignalKind) -> bool
fn ne(&self, other: &SignalKind) -> bool
This method tests for !=
.
impl Copy for SignalKind
impl Eq for SignalKind
impl StructuralEq for SignalKind
impl StructuralPartialEq for SignalKind
Auto Trait Implementations
impl RefUnwindSafe for SignalKind
impl Send for SignalKind
impl Sync for SignalKind
impl Unpin for SignalKind
impl UnwindSafe for SignalKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more