pub struct MarkdownConfig {
pub output_path: Option<String>,
pub include_details: bool,
pub include_timestamp: bool,
pub show_slowest: usize,
pub show_errors: bool,
}Expand description
Markdown reporter configuration.
Fields§
§output_path: Option<String>Output file path (None = stdout)
include_details: boolWhether to include individual test details
include_timestamp: boolWhether to include the timestamp header
show_slowest: usizeMaximum number of slowest tests to show
show_errors: boolWhether to show error messages for failed tests
Trait Implementations§
Source§impl Clone for MarkdownConfig
impl Clone for MarkdownConfig
Source§fn clone(&self) -> MarkdownConfig
fn clone(&self) -> MarkdownConfig
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 MarkdownConfig
impl Debug for MarkdownConfig
Auto Trait Implementations§
impl Freeze for MarkdownConfig
impl RefUnwindSafe for MarkdownConfig
impl Send for MarkdownConfig
impl Sync for MarkdownConfig
impl Unpin for MarkdownConfig
impl UnsafeUnpin for MarkdownConfig
impl UnwindSafe for MarkdownConfig
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