pub struct VerificationPlan {
pub required: BTreeSet<VerificationKind>,
}Expand description
The verification steps required for a plan.
Fields§
§required: BTreeSet<VerificationKind>Verification steps that should run before the report is emitted.
Trait Implementations§
Source§impl Clone for VerificationPlan
impl Clone for VerificationPlan
Source§fn clone(&self) -> VerificationPlan
fn clone(&self) -> VerificationPlan
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 VerificationPlan
impl Debug for VerificationPlan
Source§impl Default for VerificationPlan
impl Default for VerificationPlan
Source§fn default() -> VerificationPlan
fn default() -> VerificationPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerificationPlan
impl<'de> Deserialize<'de> for VerificationPlan
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 VerificationPlan
impl PartialEq for VerificationPlan
Source§impl Serialize for VerificationPlan
impl Serialize for VerificationPlan
impl Eq for VerificationPlan
impl StructuralPartialEq for VerificationPlan
Auto Trait Implementations§
impl Freeze for VerificationPlan
impl RefUnwindSafe for VerificationPlan
impl Send for VerificationPlan
impl Sync for VerificationPlan
impl Unpin for VerificationPlan
impl UnsafeUnpin for VerificationPlan
impl UnwindSafe for VerificationPlan
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