pub struct VerificationStep {
pub verification_type: VerificationType,
pub description: String,
pub expected_outcome: String,
pub requirement: StepRequirement,
}Expand description
A single step in a verification plan.
Fields§
§verification_type: VerificationTypeWhat type of verification to perform.
description: StringDescription of what this step checks.
expected_outcome: StringExpected outcome.
requirement: StepRequirementWhether this step is required for promotion.
Trait Implementations§
Source§impl Clone for VerificationStep
impl Clone for VerificationStep
Source§fn clone(&self) -> VerificationStep
fn clone(&self) -> VerificationStep
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 VerificationStep
impl Debug for VerificationStep
Source§impl<'de> Deserialize<'de> for VerificationStep
impl<'de> Deserialize<'de> for VerificationStep
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 VerificationStep
impl RefUnwindSafe for VerificationStep
impl Send for VerificationStep
impl Sync for VerificationStep
impl Unpin for VerificationStep
impl UnsafeUnpin for VerificationStep
impl UnwindSafe for VerificationStep
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