pub struct MatrixSummary {
pub by_state: BTreeMap<String, u32>,
pub by_category: BTreeMap<String, u32>,
}Expand description
The matrix summary (counts by state and category).
Fields§
§by_state: BTreeMap<String, u32>§by_category: BTreeMap<String, u32>Trait Implementations§
Source§impl Clone for MatrixSummary
impl Clone for MatrixSummary
Source§fn clone(&self) -> MatrixSummary
fn clone(&self) -> MatrixSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MatrixSummary
impl Debug for MatrixSummary
Source§impl<'de> Deserialize<'de> for MatrixSummary
impl<'de> Deserialize<'de> for MatrixSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MatrixSummary
Source§impl PartialEq for MatrixSummary
impl PartialEq for MatrixSummary
Source§impl Serialize for MatrixSummary
impl Serialize for MatrixSummary
impl StructuralPartialEq for MatrixSummary
Auto Trait Implementations§
impl Freeze for MatrixSummary
impl RefUnwindSafe for MatrixSummary
impl Send for MatrixSummary
impl Sync for MatrixSummary
impl Unpin for MatrixSummary
impl UnsafeUnpin for MatrixSummary
impl UnwindSafe for MatrixSummary
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