Struct test::test::TestTimeOptions [−][src]
pub struct TestTimeOptions {
pub error_on_excess: bool,
pub colored: bool,
pub unit_threshold: TimeThreshold,
pub integration_threshold: TimeThreshold,
pub doctest_threshold: TimeThreshold,
}🔬 This is a nightly-only experimental API. (
test)Structure with parameters for calculating test execution time.
Fields
error_on_excess: bool🔬 This is a nightly-only experimental API. (
test)Denotes if the test critical execution time limit excess should be considered a test failure.
colored: bool🔬 This is a nightly-only experimental API. (
test)unit_threshold: TimeThreshold🔬 This is a nightly-only experimental API. (
test)integration_threshold: TimeThreshold🔬 This is a nightly-only experimental API. (
test)doctest_threshold: TimeThreshold🔬 This is a nightly-only experimental API. (
test)Implementations
impl TestTimeOptions[src]
impl TestTimeOptions[src]pub fn new_from_env(error_on_excess: bool, colored: bool) -> Self[src]
🔬 This is a nightly-only experimental API. (
test)pub fn is_warn(&self, test: &TestDesc, exec_time: &TestExecTime) -> bool[src]
🔬 This is a nightly-only experimental API. (
test)pub fn is_critical(&self, test: &TestDesc, exec_time: &TestExecTime) -> bool[src]
🔬 This is a nightly-only experimental API. (
test)Trait Implementations
impl Clone for TestTimeOptions[src]
impl Clone for TestTimeOptions[src]fn clone(&self) -> TestTimeOptions[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for TestTimeOptions[src]
impl Copy for TestTimeOptions[src]impl Default for TestTimeOptions[src]
impl Default for TestTimeOptions[src]fn default() -> TestTimeOptions[src]
impl Eq for TestTimeOptions[src]
impl Eq for TestTimeOptions[src]impl PartialEq<TestTimeOptions> for TestTimeOptions[src]
impl PartialEq<TestTimeOptions> for TestTimeOptions[src]fn eq(&self, other: &TestTimeOptions) -> bool[src]
fn ne(&self, other: &TestTimeOptions) -> bool[src]
impl StructuralEq for TestTimeOptions[src]
impl StructuralEq for TestTimeOptions[src]impl StructuralPartialEq for TestTimeOptions[src]
impl StructuralPartialEq for TestTimeOptions[src]Auto Trait Implementations
impl RefUnwindSafe for TestTimeOptions
impl RefUnwindSafe for TestTimeOptionsimpl Send for TestTimeOptions
impl Send for TestTimeOptionsimpl Sync for TestTimeOptions
impl Sync for TestTimeOptionsimpl Unpin for TestTimeOptions
impl Unpin for TestTimeOptionsimpl UnwindSafe for TestTimeOptions
impl UnwindSafe for TestTimeOptions