pub struct Group<'g, R> { /* private fields */ }Expand description
The rows of a single reduce group. Created by Groups::next_group.
Implementations§
Source§impl<R: Read> Group<'_, R>
impl<R: Read> Group<'_, R>
Sourcepub fn key(&self) -> &GroupKey
pub fn key(&self) -> &GroupKey
The group’s reduce key.
Populated only for groups from JobReader::groups_by; otherwise
GroupKey::is_empty is true.
Trait Implementations§
Auto Trait Implementations§
impl<'g, R> !UnwindSafe for Group<'g, R>
impl<'g, R> Freeze for Group<'g, R>
impl<'g, R> RefUnwindSafe for Group<'g, R>where
R: RefUnwindSafe,
impl<'g, R> Send for Group<'g, R>where
R: Send,
impl<'g, R> Sync for Group<'g, R>where
R: Sync,
impl<'g, R> Unpin for Group<'g, R>
impl<'g, R> UnsafeUnpin for Group<'g, R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more