Struct signal_hook::iterator::backend::SignalIterator [−][src]
pub struct SignalIterator<SD, E: Exfiltrator> { /* fields omitted */ }
An infinite iterator of received signals.
Implementations
impl<SD, E: Exfiltrator> SignalIterator<SD, E>
[src]
impl<SD, E: Exfiltrator> SignalIterator<SD, E>
[src]pub fn new<R>(signals: SD) -> Self where
SD: BorrowMut<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
[src]
SD: BorrowMut<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
Create a new infinite iterator for signals registered with the passed
in SignalDelivery
instance.
pub fn poll_signal<R, F>(
&mut self,
has_signals: &mut F
) -> PollResult<E::Output> where
SD: BorrowMut<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
F: FnMut(&mut R) -> Result<bool, Error>,
[src]
&mut self,
has_signals: &mut F
) -> PollResult<E::Output> where
SD: BorrowMut<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
F: FnMut(&mut R) -> Result<bool, Error>,
Return a signal if there is one or tell the caller that there is none at the moment.
You have to pass in a callback which checks the underlying reading end of the pipe if
there may be any pending signals. This callback may or may not block. If the callback
returns true
this method will try to fetch the next signal and return it as a
PollResult::Signal
. If the callback returns false
the method will return
PollResult::Pending
and assume it will be called again at a later point in time.
The callback may be called any number of times by this function.
If the iterator was closed by the close
method of the associtated
Handle
this method will return PollResult::Closed
.
pub fn handle<R>(&self) -> Handle where
SD: Borrow<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
[src]
SD: Borrow<SignalDelivery<R, E>>,
R: 'static + AsRawFd + Send + Sync,
Auto Trait Implementations
impl<SD, E> RefUnwindSafe for SignalIterator<SD, E> where
E: RefUnwindSafe,
SD: RefUnwindSafe,
<E as Exfiltrator>::Storage: RefUnwindSafe,
E: RefUnwindSafe,
SD: RefUnwindSafe,
<E as Exfiltrator>::Storage: RefUnwindSafe,
impl<SD, E> Send for SignalIterator<SD, E> where
SD: Send,
SD: Send,
impl<SD, E> Sync for SignalIterator<SD, E> where
SD: Sync,
SD: Sync,
impl<SD, E> Unpin for SignalIterator<SD, E> where
SD: Unpin,
SD: Unpin,
impl<SD, E> UnwindSafe for SignalIterator<SD, E> where
E: RefUnwindSafe,
SD: UnwindSafe,
<E as Exfiltrator>::Storage: RefUnwindSafe,
E: RefUnwindSafe,
SD: UnwindSafe,
<E as Exfiltrator>::Storage: RefUnwindSafe,