pub struct OutcomeIdentityV2 {
pub version: u16,
pub status: RunState,
pub coverage: CoverageStateV2,
pub error_count: Evidence<u64>,
pub exit_code: Evidence<i32>,
pub findings_digest: Evidence<String>,
pub report_digest: Evidence<String>,
}Expand description
Terminal outcome and result identity for one run.
Fields§
§version: u16§status: RunState§coverage: CoverageStateV2§error_count: Evidence<u64>§exit_code: Evidence<i32>§findings_digest: Evidence<String>§report_digest: Evidence<String>Implementations§
Trait Implementations§
Source§impl Clone for OutcomeIdentityV2
impl Clone for OutcomeIdentityV2
Source§fn clone(&self) -> OutcomeIdentityV2
fn clone(&self) -> OutcomeIdentityV2
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 OutcomeIdentityV2
impl Debug for OutcomeIdentityV2
Source§impl<'de> Deserialize<'de> for OutcomeIdentityV2
impl<'de> Deserialize<'de> for OutcomeIdentityV2
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 OutcomeIdentityV2
impl PartialEq for OutcomeIdentityV2
Source§impl Serialize for OutcomeIdentityV2
impl Serialize for OutcomeIdentityV2
impl StructuralPartialEq for OutcomeIdentityV2
Auto Trait Implementations§
impl Freeze for OutcomeIdentityV2
impl RefUnwindSafe for OutcomeIdentityV2
impl Send for OutcomeIdentityV2
impl Sync for OutcomeIdentityV2
impl Unpin for OutcomeIdentityV2
impl UnsafeUnpin for OutcomeIdentityV2
impl UnwindSafe for OutcomeIdentityV2
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