Trait PositionSimd

Source
pub trait PositionSimd<'a, T>
where T: PartialEq,
{ // Required method fn position_simd<F>(&self, f: F) -> Option<usize> where F: Fn(&T) -> bool; }

Required Methods§

Source

fn position_simd<F>(&self, f: F) -> Option<usize>
where F: Fn(&T) -> 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.

Implementations on Foreign Types§

Source§

impl<'a, T> PositionSimd<'a, T> for Iter<'a, T>
where T: PartialEq,

Source§

fn position_simd<F>(&self, f: F) -> Option<usize>
where F: Fn(&T) -> bool,

Implementors§