pub struct TestSuiteSettings {
pub stop_on_failure: bool,
pub disabled: bool,
}
Expand description
Settings for running a test suite.
Fields§
§stop_on_failure: bool
If set the test suite will stop on first test failing.
disabled: bool
If set the test suites will not be run.
Trait Implementations§
Source§impl Clone for TestSuiteSettings
impl Clone for TestSuiteSettings
Source§fn clone(&self) -> TestSuiteSettings
fn clone(&self) -> TestSuiteSettings
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 TestSuiteSettings
impl Debug for TestSuiteSettings
Source§impl Default for TestSuiteSettings
impl Default for TestSuiteSettings
Source§fn default() -> TestSuiteSettings
fn default() -> TestSuiteSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TestSuiteSettings
impl RefUnwindSafe for TestSuiteSettings
impl Send for TestSuiteSettings
impl Sync for TestSuiteSettings
impl Unpin for TestSuiteSettings
impl UnwindSafe for TestSuiteSettings
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