pub struct FeatureStats {
pub total: usize,
pub passing: usize,
pub failing: usize,
pub in_progress: usize,
pub blocked: usize,
}Expand description
Stats summary for features.
Fields§
§total: usize§passing: usize§failing: usize§in_progress: usize§blocked: usizeTrait Implementations§
Source§impl Clone for FeatureStats
impl Clone for FeatureStats
Source§fn clone(&self) -> FeatureStats
fn clone(&self) -> FeatureStats
Returns a duplicate of the value. Read more
1.0.0 · 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 FeatureStats
impl Debug for FeatureStats
Source§impl Default for FeatureStats
impl Default for FeatureStats
Source§fn default() -> FeatureStats
fn default() -> FeatureStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeatureStats
impl<'de> Deserialize<'de> for FeatureStats
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
Auto Trait Implementations§
impl Freeze for FeatureStats
impl RefUnwindSafe for FeatureStats
impl Send for FeatureStats
impl Sync for FeatureStats
impl Unpin for FeatureStats
impl UnwindSafe for FeatureStats
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