pub trait ContainsSimd: Sized {
// Required method
fn contains_simd(vector: &[Self], target: Self) -> bool;
}Expand description
A SIMD-accelerated version of
std::slice::contains
Required Methods§
fn contains_simd(vector: &[Self], target: Self) -> 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.