[][src]Struct bitvec::slice::SplitNMut

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

An iterator over mutable subslices separated by positions that satisfy a predicate function, limited to a given number of splits.

This struct is created by the splitn_mut method on BitSlices.

Trait Implementations

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

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

The type of the elements being iterated over.

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

impl<'a, C, T, F> FusedIterator for SplitNMut<'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 SplitNMut<'a, C, T, F> where
    F: Send

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

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

impl<'a, C, T, F> !UnwindSafe for SplitNMut<'a, C, T, F>

impl<'a, C, T, F> RefUnwindSafe for SplitNMut<'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, 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]