pub struct VerificationPlan {
pub target_id: String,
pub strategies: Vec<VerificationStrategy>,
pub budget_seconds: u64,
pub write_generated_tests: bool,
pub run_existing_tests: bool,
pub run_generated_tests: bool,
pub fail_on_generated_test_failure: bool,
}Fields§
§target_id: String§strategies: Vec<VerificationStrategy>§budget_seconds: u64§write_generated_tests: bool§run_existing_tests: bool§run_generated_tests: bool§fail_on_generated_test_failure: boolTrait 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 (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 VerificationPlan
impl Debug for VerificationPlan
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§fn eq(&self, other: &VerificationPlan) -> bool
fn eq(&self, other: &VerificationPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.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