macro_rules! delegate_iterator {
    ($iter:ty => $item:ty ,
     impl $( $args:tt )*
     ) => { ... };
}Expand description
Creates a parallel iterator implementation which simply wraps an inner type
and delegates all methods inward.  The actual struct must already be
declared with an inner field.
The implementation of IntoParallelIterator should be added separately.