pub trait ExecSpecSeqPush<'a, Out: Sized + DeepView>:
Sized
+ DeepView
+ ToOwned<Out> {
type Elem: DeepView + DeepViewClone;
// Required method
exec fn exec_push(self, a: Self::Elem) -> Out;
}Expand description
Spec for executable version of Seq::push.
Required Associated Types§
type Elem: DeepView + DeepViewClone
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.