Struct SplitAsciiWhitespace
pub struct SplitAsciiWhitespace<'ch>(/* private field */);
Parallel iterator over substrings separated by ASCII whitespace
Trait Implementations
impl<'ch> Clone for SplitAsciiWhitespace<'ch>
fn clone(&self) -> SplitAsciiWhitespace<'ch>
impl<'ch> Debug for SplitAsciiWhitespace<'ch>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'ch> ParallelIterator for SplitAsciiWhitespace<'ch>
type Item = &'ch str;fn drive_unindexed<C>(self, consumer: C) -> C::Result where C: UnindexedConsumer<Self::Item>,
Auto Trait Implementations
impl<'ch> Freeze for SplitAsciiWhitespace<'ch>
impl<'ch> RefUnwindSafe for SplitAsciiWhitespace<'ch>
impl<'ch> Send for SplitAsciiWhitespace<'ch>
impl<'ch> Sync for SplitAsciiWhitespace<'ch>
impl<'ch> Unpin for SplitAsciiWhitespace<'ch>
impl<'ch> UnsafeUnpin for SplitAsciiWhitespace<'ch>
impl<'ch> UnwindSafe for SplitAsciiWhitespace<'ch>
Blanket Implementations
impl<T> Any for SplitAsciiWhitespace<'ch>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for SplitAsciiWhitespace<'ch>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for SplitAsciiWhitespace<'ch>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for SplitAsciiWhitespace<'ch>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for SplitAsciiWhitespace<'ch>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoEither for SplitAsciiWhitespace<'ch>
impl<T> IntoParallelIterator for SplitAsciiWhitespace<'ch>
where
T: ParallelIterator,
type Iter = T;type Item = <T as ParallelIterator>::Item;fn into_par_iter(self) -> T
impl<T> Pointable for SplitAsciiWhitespace<'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 SplitAsciiWhitespace<'ch>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for SplitAsciiWhitespace<'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 SplitAsciiWhitespace<'ch>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for SplitAsciiWhitespace<'ch>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>