pub trait SetDiffExt<T> {
// Required method
fn apply<I>(&mut self, iter: I)
where I: IntoIterator<Item = SetDiff<T>>;
}
Required Methods§
Sourcefn apply<I>(&mut self, iter: I)where
I: IntoIterator<Item = SetDiff<T>>,
fn apply<I>(&mut self, iter: I)where
I: IntoIterator<Item = SetDiff<T>>,
Apply a set of changes to some object
This may not respect ordering
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.