[][src]Struct core_extensions::slices::RSplitSliceWhile

pub struct RSplitSliceWhile<'a, T: 'a, P, U> { /* fields omitted */ }

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

Look here for details and examples.

Trait Implementations

impl<'a, T: Debug + 'a, P: Debug, U: Debug> Debug for RSplitSliceWhile<'a, T, P, U>[src]

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

type Item = KeySlice<'a, T, U>

The type of the elements being iterated over.

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

impl<'a, T: Clone + 'a, P: Clone, U: Clone> Clone for RSplitSliceWhile<'a, T, P, U>[src]

Auto Trait Implementations

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

impl<'a, T, P, U> Send for RSplitSliceWhile<'a, T, P, U> where
    P: Send,
    T: Sync,
    U: Send

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

impl<'a, T, P, U> UnwindSafe for RSplitSliceWhile<'a, T, P, U> where
    P: UnwindSafe,
    T: RefUnwindSafe,
    U: UnwindSafe

impl<'a, T, P, U> RefUnwindSafe for RSplitSliceWhile<'a, T, P, U> where
    P: RefUnwindSafe,
    T: RefUnwindSafe,
    U: 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.