pub struct Group<'a> {
pub key: String,
pub rows: Vec<&'a Row>,
}Expand description
One group of a view’s result.
Fields§
§key: StringThe group key — a field value, or a value cut at the view’s grain.
rows: Vec<&'a Row>The documents under this key, ordered by path.
Trait Implementations§
impl<'a> StructuralPartialEq for Group<'a>
Auto Trait Implementations§
impl<'a> Freeze for Group<'a>
impl<'a> RefUnwindSafe for Group<'a>
impl<'a> Send for Group<'a>
impl<'a> Sync for Group<'a>
impl<'a> Unpin for Group<'a>
impl<'a> UnsafeUnpin for Group<'a>
impl<'a> UnwindSafe for Group<'a>
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