pub trait ExecSpecSeqAdd<'a, Out: Sized + DeepView>:
Sized
+ DeepView
+ ToOwned<Out> {
// Required method
exec fn exec_add(self, rhs: Self) -> Out;
}Expand description
Spec for executable version of Seq::add.
Required Methods§
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.