Struct collections::slice::RSplitMut
[−]
[src]
pub struct RSplitMut<'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
, starting from the end of the slice.
This struct is created by the rsplit_mut
method on slices.
Trait Implementations
impl<'a, T, P> FusedIterator for RSplitMut<'a, T, P> where
P: FnMut(&T) -> bool,
[src]
P: FnMut(&T) -> bool,
impl<'a, T, P> Debug for RSplitMut<'a, T, P> where
P: FnMut(&T) -> bool,
T: 'a + Debug,
[src]
P: FnMut(&T) -> bool,
T: 'a + Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<'a, T, P> Iterator for RSplitMut<'a, T, P> where
P: FnMut(&T) -> bool,
[src]
P: FnMut(&T) -> bool,
type Item = &'a mut [T]
fn next(&mut self) -> Option<&'a mut [T]>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
impl<'a, T, P> DoubleEndedIterator for RSplitMut<'a, T, P> where
P: FnMut(&T) -> bool,
[src]
P: FnMut(&T) -> bool,