pub struct ControlSpec {
pub checker_files: Vec<ControlFile>,
pub valid_files: Vec<ControlFile>,
pub defective_files: Vec<ControlFile>,
pub expected_failure: String,
pub timeout_seconds: u64,
}Fields§
§checker_files: Vec<ControlFile>§valid_files: Vec<ControlFile>§defective_files: Vec<ControlFile>§expected_failure: String§timeout_seconds: u64Trait Implementations§
Source§impl Clone for ControlSpec
impl Clone for ControlSpec
Source§fn clone(&self) -> ControlSpec
fn clone(&self) -> ControlSpec
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 ControlSpec
impl Debug for ControlSpec
Source§impl<'de> Deserialize<'de> for ControlSpec
impl<'de> Deserialize<'de> for ControlSpec
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
impl Eq for ControlSpec
Source§impl PartialEq for ControlSpec
impl PartialEq for ControlSpec
Source§impl Serialize for ControlSpec
impl Serialize for ControlSpec
impl StructuralPartialEq for ControlSpec
Auto Trait Implementations§
impl Freeze for ControlSpec
impl RefUnwindSafe for ControlSpec
impl Send for ControlSpec
impl Sync for ControlSpec
impl Unpin for ControlSpec
impl UnsafeUnpin for ControlSpec
impl UnwindSafe for ControlSpec
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