Struct signal_hook::iterator::exfiltrator::raw::WithRawSiginfo [−][src]
pub struct WithRawSiginfo;
The Exfiltrator
that produces the raw
libc::siginfo_t
. Note that it might look differently on different OSes and its API is a
little bit more limited than its C counterpart.
You might prefer the [WithOrigin
][super::WithOrigin] if you simply need information about the
origin of the signal.
Examples
// Subscribe to SIGUSR1, with information about the process. let mut signals = SignalsInfo::<WithRawSiginfo>::new(&[SIGUSR1])?; // Send ourselves a signal. signal_hook::low_level::raise(SIGUSR1)?; // Grab the signal and look into the details. let received = signals.wait().next().unwrap(); // Not much else is useful in a cross-platform way :-( assert_eq!(SIGUSR1, received.si_signo);
Trait Implementations
impl Clone for WithRawSiginfo
[src]
impl Clone for WithRawSiginfo
[src]fn clone(&self) -> WithRawSiginfo
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for WithRawSiginfo
[src]
impl Default for WithRawSiginfo
[src]