Trait SetDiffExt

Source
pub trait SetDiffExt<T> {
    // Required method
    fn apply<I>(&mut self, iter: I)
       where I: IntoIterator<Item = SetDiff<T>>;
}

Required Methods§

Source

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.

Implementations on Foreign Types§

Source§

impl<T> SetDiffExt<T> for BTreeSet<T>
where T: Ord,

Source§

fn apply<I>(&mut self, iter: I)
where I: IntoIterator<Item = SetDiff<T>>,

Implementors§