pub struct VerboseFormatter;Expand description
Verbose test output formatter with detailed information
Trait Implementations§
Source§impl TestOutputFormatter for VerboseFormatter
impl TestOutputFormatter for VerboseFormatter
Source§fn format_test_start(&self, test_name: &str) -> String
fn format_test_start(&self, test_name: &str) -> String
Format the start of a test
Source§fn format_test_success(&self, test_name: &str, result: &TestResult) -> String
fn format_test_success(&self, test_name: &str, result: &TestResult) -> String
Format a successful test result
Source§fn format_test_failure(&self, test_name: &str, result: &TestResult) -> String
fn format_test_failure(&self, test_name: &str, result: &TestResult) -> String
Format a failed test result
Source§fn format_test_skipped(&self, test_name: &str, result: &TestResult) -> String
fn format_test_skipped(&self, test_name: &str, result: &TestResult) -> String
Format a skipped test result
Auto Trait Implementations§
impl Freeze for VerboseFormatter
impl RefUnwindSafe for VerboseFormatter
impl Send for VerboseFormatter
impl Sync for VerboseFormatter
impl Unpin for VerboseFormatter
impl UnwindSafe for VerboseFormatter
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