ExecSpecMultisetAdd

Trait ExecSpecMultisetAdd 

Source
pub trait ExecSpecMultisetAdd<'a, Out: Sized + DeepView>:
    Sized
    + DeepView
    + ToOwned<Out> {
    // Required method
    exec fn exec_add(self, m2: Self) -> Out;
}
Expand description

Spec for executable version of Multiset::add.

Required Methods§

Source

exec fn exec_add(self, m2: Self) -> Out

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.

Implementors§

Source§

impl<'a, T> ExecSpecMultisetAdd<'a, ExecMultiset<T>> for &'a ExecMultiset<T>
where T: DeepView + DeepViewClone + Hash + Eq,