Trait nu_stream::Interruptible[][src]

pub trait Interruptible<V> {
    fn interruptible(self, ctrl_c: Arc<AtomicBool>) -> InterruptibleStream<V>;
}

Required methods

Loading content...

Implementors

impl<S, V> Interruptible<V> for S where
    S: Stream<Item = V> + Send + 'static, 
[src]

Loading content...