Struct collections::slice::SplitMut1.0.0 [] [src]

pub struct SplitMut<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a, 
{ /* fields omitted */ }

An iterator over the subslices of the vector which are separated by elements that match pred.

This struct is created by the split_mut method on slices.

Trait Implementations

impl<'a, T, P> FusedIterator for SplitMut<'a, T, P> where
    P: FnMut(&T) -> bool, 
[src]

impl<'a, T, P> Debug for SplitMut<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a + Debug
1.9.0
[src]

[src]

Formats the value using the given formatter.

impl<'a, T, P> Iterator for SplitMut<'a, T, P> where
    P: FnMut(&T) -> bool, 
[src]

[src]

[src]

impl<'a, T, P> DoubleEndedIterator for SplitMut<'a, T, P> where
    P: FnMut(&T) -> bool, 
[src]

[src]