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