syncfast 0.2.0

rsync/rdiff/zsync clone
Documentation
1
2
3
4
5
pub trait StreamingIterator<'a> {
    type Item: 'a;

    fn next(&'a mut self) -> Option<Self::Item>;
}