pub struct PresetSummary {
pub preset: String,
pub harness_column: String,
pub rows: usize,
pub counts: BTreeMap<String, usize>,
pub gaps: usize,
}Expand description
Per-status counts plus the headline gap number for one preset.
Fields§
§preset: StringPreset name.
harness_column: StringCatalog column the preset mirrors (cc / cx).
rows: usizeRows the harness has (the denominator).
counts: BTreeMap<String, usize>Row count per status label.
gaps: usizeThe headline: rows that are not implemented.
Trait Implementations§
Source§impl Clone for PresetSummary
impl Clone for PresetSummary
Source§fn clone(&self) -> PresetSummary
fn clone(&self) -> PresetSummary
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 PresetSummary
impl Debug for PresetSummary
Source§impl<'de> Deserialize<'de> for PresetSummary
impl<'de> Deserialize<'de> for PresetSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PresetSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PresetSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PresetSummary
Source§impl PartialEq for PresetSummary
impl PartialEq for PresetSummary
Source§impl Serialize for PresetSummary
impl Serialize for PresetSummary
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 StructuralPartialEq for PresetSummary
Auto Trait Implementations§
impl Freeze for PresetSummary
impl RefUnwindSafe for PresetSummary
impl Send for PresetSummary
impl Sync for PresetSummary
impl Unpin for PresetSummary
impl UnsafeUnpin for PresetSummary
impl UnwindSafe for PresetSummary
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.