Struct Groups
struct Groups<'a, K, I, F> { ... }
where
I: Iterator + 'a,
<I as >::Item: 'a,
K: 'a,
F: 'a
An iterator that yields the Group iterators.
Iterator element type is (K, Group):
the group's key K and the group's iterator.
See .chunk_by() for more information.
Implementations
impl<'a, K, I, F> Freeze for Groups<'a, K, I, F>
impl<'a, K, I, F> Iterator for Groups<'a, K, I, F>
fn next(self: &mut Self) -> Option<<Self as >::Item>
impl<'a, K, I, F> RefUnwindSafe for Groups<'a, K, I, F>
impl<'a, K, I, F> Send for Groups<'a, K, I, F>
impl<'a, K, I, F> Sync for Groups<'a, K, I, F>
impl<'a, K, I, F> Unpin for Groups<'a, K, I, F>
impl<'a, K, I, F> UnsafeUnpin for Groups<'a, K, I, F>
impl<'a, K, I, F> UnwindSafe for Groups<'a, K, I, F>
impl<I> IntoIterator for Groups<'a, K, I, F>
fn into_iter(self: Self) -> I
impl<IT, A, FromA, B, FromB> MultiUnzip for Groups<'a, K, I, F>
fn multiunzip(self: Self) -> (FromA, FromB)
impl<T> Any for Groups<'a, K, I, F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Groups<'a, K, I, F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Groups<'a, K, I, F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for Groups<'a, K, I, F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Itertools for Groups<'a, K, I, F>
impl<T, U> Into for Groups<'a, K, I, F>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Groups<'a, K, I, F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Groups<'a, K, I, F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>