[][src]Struct bitvec::slice::RSplit

pub struct RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
{ /* fields omitted */ }

An iterator over subslices separated by bits that satisfy a predicate function, starting from the end of the slice.

This struct is created by the rsplit method on BitSlices.

Trait Implementations

impl<'a, C, T, F> DoubleEndedIterator for RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
[src]

impl<'a, C, T, F> Iterator for RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
[src]

type Item = &'a BitSlice<C, T>

The type of the elements being iterated over.

impl<'a, C: Clone, T: Clone, F: Clone> Clone for RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
[src]

impl<'a, C, T, F> Debug for RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
[src]

impl<'a, C, T, F> FusedIterator for RSplit<'a, C, T, F> where
    C: Cursor,
    T: 'a + BitStore,
    F: FnMut(usize, &bool) -> bool
[src]

Auto Trait Implementations

impl<'a, C, T, F> Send for RSplit<'a, C, T, F> where
    F: Send

impl<'a, C, T, F> Sync for RSplit<'a, C, T, F> where
    F: Sync

impl<'a, C, T, F> Unpin for RSplit<'a, C, T, F> where
    F: Unpin

impl<'a, C, T, F> UnwindSafe for RSplit<'a, C, T, F> where
    C: RefUnwindSafe,
    F: UnwindSafe,
    T: RefUnwindSafe

impl<'a, C, T, F> RefUnwindSafe for RSplit<'a, C, T, F> where
    C: RefUnwindSafe,
    F: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<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]