[][src]Struct core_extensions::strings::RSplitWhile

pub struct RSplitWhile<'a, P, T> { /* fields omitted */ }

Iterator that returns string slices for the ranges in which mapper returns the same value ,from the end.

Look here for details and examples.

Trait Implementations

impl<'a, P: Debug, T: Debug> Debug for RSplitWhile<'a, P, T>[src]

impl<'a, P, T: Eq + Clone> Iterator for RSplitWhile<'a, P, T> where
    P: FnMut(char) -> T, 
[src]

type Item = KeyStr<'a, T>

The type of the elements being iterated over.

impl<'a, P, T: Eq + Clone> DoubleEndedIterator for RSplitWhile<'a, P, T> where
    P: FnMut(char) -> T, 
[src]

impl<'a, P: Clone, T: Clone> Clone for RSplitWhile<'a, P, T>[src]

Auto Trait Implementations

impl<'a, P, T> Unpin for RSplitWhile<'a, P, T> where
    P: Unpin,
    T: Unpin

impl<'a, P, T> Send for RSplitWhile<'a, P, T> where
    P: Send,
    T: Send

impl<'a, P, T> Sync for RSplitWhile<'a, P, T> where
    P: Sync,
    T: Sync

impl<'a, P, T> UnwindSafe for RSplitWhile<'a, P, T> where
    P: UnwindSafe,
    T: UnwindSafe

impl<'a, P, T> RefUnwindSafe for RSplitWhile<'a, P, T> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<I> IteratorExt for I where
    I: Iterator
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.