pub struct Verification {
pub tests_passed: Option<bool>,
pub tests_failed: Option<u32>,
pub coverage_pct: Option<f32>,
pub coverage_delta: Option<f32>,
pub lint_warnings: Option<u32>,
pub custom: BTreeMap<String, Value>,
}Expand description
Verification information for a state.
Fields§
§tests_passed: Option<bool>Whether tests passed.
tests_failed: Option<u32>Number of failed tests.
coverage_pct: Option<f32>Test coverage percentage.
coverage_delta: Option<f32>Change in coverage from parent.
lint_warnings: Option<u32>Number of lint warnings.
custom: BTreeMap<String, Value>Custom verification data.
Implementations§
Source§impl Verification
impl Verification
Trait Implementations§
Source§impl Clone for Verification
impl Clone for Verification
Source§fn clone(&self) -> Verification
fn clone(&self) -> Verification
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 Verification
impl Debug for Verification
Source§impl Default for Verification
impl Default for Verification
Source§fn default() -> Verification
fn default() -> Verification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Verification
impl<'de> Deserialize<'de> for Verification
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
Source§impl PartialEq for Verification
impl PartialEq for Verification
Source§fn eq(&self, other: &Verification) -> bool
fn eq(&self, other: &Verification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Verification
impl Serialize for Verification
impl StructuralPartialEq for Verification
Auto Trait Implementations§
impl Freeze for Verification
impl RefUnwindSafe for Verification
impl Send for Verification
impl Sync for Verification
impl Unpin for Verification
impl UnsafeUnpin for Verification
impl UnwindSafe for Verification
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