Struct CharIndices
pub struct CharIndices<'ch> { /* private fields */ }
Parallel iterator over the characters of a string, with their positions
Trait Implementations
impl<'ch> Clone for CharIndices<'ch>
fn clone(&self) -> CharIndices<'ch>
impl<'ch> Debug for CharIndices<'ch>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'ch> ParallelIterator for CharIndices<'ch>
type Item = (usize, char);fn drive_unindexed<C>(self, consumer: C) -> C::Result where C: UnindexedConsumer<Self::Item>,
Auto Trait Implementations
impl<'ch> Freeze for CharIndices<'ch>
impl<'ch> RefUnwindSafe for CharIndices<'ch>
impl<'ch> Send for CharIndices<'ch>
impl<'ch> Sync for CharIndices<'ch>
impl<'ch> Unpin for CharIndices<'ch>
impl<'ch> UnsafeUnpin for CharIndices<'ch>
impl<'ch> UnwindSafe for CharIndices<'ch>
Blanket Implementations
impl<T> Any for CharIndices<'ch>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for CharIndices<'ch>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for CharIndices<'ch>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for CharIndices<'ch>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for CharIndices<'ch>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoEither for CharIndices<'ch>
impl<T> IntoParallelIterator for CharIndices<'ch>
where
T: ParallelIterator,
type Iter = T;type Item = <T as ParallelIterator>::Item;fn into_par_iter(self) -> T
impl<T> Pointable for CharIndices<'ch>
const ALIGN: usize = _;type Init = T;unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T> ToOwned for CharIndices<'ch>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for CharIndices<'ch>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for CharIndices<'ch>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for CharIndices<'ch>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>