pub trait ExecSpecSetContains<'a>: Sized + DeepView {
type Elem: DeepView;
// Required method
exec fn exec_contains(self, a: Self::Elem) -> bool;
}Expand description
Spec for executable version of Set::contains.
Required Associated Types§
Required Methods§
Sourceexec fn exec_contains(self, a: Self::Elem) -> bool
exec fn exec_contains(self, a: Self::Elem) -> bool
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.