pub trait SyncTo {
    // Required method
    fn sync_to(&self, other: &mut Self);
}
Expand description

Make another instance equal to yourself

Required Methods§

source

fn sync_to(&self, other: &mut Self)

let other = self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I: Iterator> SyncTo for Span<I>