pub struct OutputConfig {
pub default_format: String,
pub json_path: Option<PathBuf>,
pub markdown_path: Option<PathBuf>,
pub junit_path: Option<PathBuf>,
pub html_path: Option<PathBuf>,
}Expand description
[output].
Fields§
§default_format: StringDefault render format (table, json, markdown, junit).
json_path: Option<PathBuf>JSON report path.
markdown_path: Option<PathBuf>Markdown report path.
junit_path: Option<PathBuf>JUnit report path.
html_path: Option<PathBuf>HTML report path.
Trait Implementations§
Source§impl Clone for OutputConfig
impl Clone for OutputConfig
Source§fn clone(&self) -> OutputConfig
fn clone(&self) -> OutputConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutputConfig
impl Debug for OutputConfig
Source§impl Default for OutputConfig
impl Default for OutputConfig
Source§impl<'de> Deserialize<'de> for OutputConfigwhere
OutputConfig: Default,
impl<'de> Deserialize<'de> for OutputConfigwhere
OutputConfig: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OutputConfig
impl PartialEq for OutputConfig
Source§fn eq(&self, other: &OutputConfig) -> bool
fn eq(&self, other: &OutputConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutputConfig
impl Serialize for OutputConfig
impl StructuralPartialEq for OutputConfig
Auto Trait Implementations§
impl Freeze for OutputConfig
impl RefUnwindSafe for OutputConfig
impl Send for OutputConfig
impl Sync for OutputConfig
impl Unpin for OutputConfig
impl UnsafeUnpin for OutputConfig
impl UnwindSafe for OutputConfig
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