Struct groupby::GroupedRows
source · pub struct GroupedRows<K, T: WithKey<K>> {
pub group_key: K,
pub rows: Vec<T>,
}
Fields§
§group_key: K
§rows: Vec<T>
Trait Implementations§
source§impl<K: PartialEq, T: PartialEq + WithKey<K>> PartialEq for GroupedRows<K, T>
impl<K: PartialEq, T: PartialEq + WithKey<K>> PartialEq for GroupedRows<K, T>
source§fn eq(&self, other: &GroupedRows<K, T>) -> bool
fn eq(&self, other: &GroupedRows<K, T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<K: Eq, T: Eq + WithKey<K>> Eq for GroupedRows<K, T>
impl<K, T: WithKey<K>> StructuralPartialEq for GroupedRows<K, T>
Auto Trait Implementations§
impl<K, T> Freeze for GroupedRows<K, T>where
K: Freeze,
impl<K, T> RefUnwindSafe for GroupedRows<K, T>where
K: RefUnwindSafe,
T: RefUnwindSafe,
impl<K, T> Send for GroupedRows<K, T>
impl<K, T> Sync for GroupedRows<K, T>
impl<K, T> Unpin for GroupedRows<K, T>
impl<K, T> UnwindSafe for GroupedRows<K, T>where
K: UnwindSafe,
T: UnwindSafe,
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