pub enum RowKind {
Group,
Sub,
Total,
}Expand description
Role of a row in the rendered table.
Variants§
Group
A period’s aggregate (“All” across agents), or a standalone row.
Sub
A per-agent breakdown nested under a Group row.
Total
The grand-total row.
Trait Implementations§
Source§impl Serialize for RowKind
impl Serialize for RowKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for RowKind
impl Eq for RowKind
impl StructuralPartialEq for RowKind
Auto Trait Implementations§
impl Freeze for RowKind
impl RefUnwindSafe for RowKind
impl Send for RowKind
impl Sync for RowKind
impl Unpin for RowKind
impl UnsafeUnpin for RowKind
impl UnwindSafe for RowKind
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