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]
fn clone(&self) -> TestTimeOptions[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for TestTimeOptions[src]
impl Debug for TestTimeOptions[src]impl Default for TestTimeOptions[src]
impl Default for TestTimeOptions[src]fn default() -> TestTimeOptions[src]
fn default() -> TestTimeOptions[src]Returns the “default value” for a type. Read more
impl PartialEq<TestTimeOptions> for TestTimeOptions[src]
impl PartialEq<TestTimeOptions> for TestTimeOptions[src]fn eq(&self, other: &TestTimeOptions) -> bool[src]
fn eq(&self, other: &TestTimeOptions) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &TestTimeOptions) -> bool[src]
fn ne(&self, other: &TestTimeOptions) -> bool[src]This method tests for !=.
impl Copy for TestTimeOptions[src]
impl Eq for TestTimeOptions[src]
impl StructuralEq for TestTimeOptions[src]
impl StructuralPartialEq for TestTimeOptions[src]
Auto Trait Implementations
impl RefUnwindSafe for TestTimeOptions
impl Send for TestTimeOptions
impl Sync for TestTimeOptions
impl Unpin for TestTimeOptions
impl UnwindSafe for TestTimeOptions
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more