pub struct ValidationReportingConfig {
pub output_report: bool,
pub format: ValidationReportFormat,
pub fail_on_error: bool,
pub include_details: bool,
}Expand description
Validation reporting configuration.
Fields§
§output_report: boolOutput validation report to file.
format: ValidationReportFormatReport format.
fail_on_error: boolFail generation if validation fails.
include_details: boolInclude detailed statistics in report.
Trait Implementations§
Source§impl Clone for ValidationReportingConfig
impl Clone for ValidationReportingConfig
Source§fn clone(&self) -> ValidationReportingConfig
fn clone(&self) -> ValidationReportingConfig
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 ValidationReportingConfig
impl Debug for ValidationReportingConfig
Source§impl Default for ValidationReportingConfig
impl Default for ValidationReportingConfig
Source§impl<'de> Deserialize<'de> for ValidationReportingConfig
impl<'de> Deserialize<'de> for ValidationReportingConfig
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
Auto Trait Implementations§
impl Freeze for ValidationReportingConfig
impl RefUnwindSafe for ValidationReportingConfig
impl Send for ValidationReportingConfig
impl Sync for ValidationReportingConfig
impl Unpin for ValidationReportingConfig
impl UnwindSafe for ValidationReportingConfig
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