pub struct ScriptingTestOptions {
pub name: Option<String>,
pub args: Option<Vec<String>>,
pub pattern: Option<String>,
pub timeout_secs: Option<u64>,
pub count: Option<u64>,
}Fields§
§name: Option<String>Name of test
args: Option<Vec<String>>Any additional argument to the test binary.
pattern: Option<String>Filter names of tests to run based on this pattern.
timeout_secs: Option<u64>§count: Option<u64>The number of times test should be run.
Trait Implementations§
Source§impl Clone for ScriptingTestOptions
impl Clone for ScriptingTestOptions
Source§fn clone(&self) -> ScriptingTestOptions
fn clone(&self) -> ScriptingTestOptions
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 ScriptingTestOptions
impl Debug for ScriptingTestOptions
Source§impl<'de> Deserialize<'de> for ScriptingTestOptions
impl<'de> Deserialize<'de> for ScriptingTestOptions
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 ScriptingTestOptions
impl RefUnwindSafe for ScriptingTestOptions
impl Send for ScriptingTestOptions
impl Sync for ScriptingTestOptions
impl Unpin for ScriptingTestOptions
impl UnwindSafe for ScriptingTestOptions
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