pub trait ExecSpecSeqIsPrefixOf<'a>: DeepView + Sized {
type Other: DeepView<V = Self::V>;
// Required method
exec fn exec_is_prefix_of(self, other: Self::Other) -> res : bool;
}Expand description
Spec for executable version of Seq::is_prefix_of.
Required Associated Types§
Required Methods§
Sourceexec fn exec_is_prefix_of(self, other: Self::Other) -> res : bool
exec fn exec_is_prefix_of(self, other: Self::Other) -> res : 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.