timely/dataflow/channels/pullers/mod.rs
1pub use self::counter::Counter;
2pub mod counter;
3
4
5// pub trait Pullable<T, D> {
6// fn pull(&mut self) -> Option<(&T, &mut Message<D>)>;
7// }
8//
9// impl<T, D, P: ?Sized + Pullable<T, D>> Pullable<T, D> for Box<P> {
10// fn pull(&mut self) -> Option<(&T, &mut Message<D>)> { (**self).pull() }
11// }