Struct havocompare::csv::CSVCompareConfig
source · pub struct CSVCompareConfig {
pub delimiters: Delimiters,
pub comparison_modes: Vec<Mode>,
pub exclude_field_regex: Option<String>,
pub preprocessing: Option<Vec<Preprocessor>>,
}Expand description
Settings for the CSV comparison module
Fields§
§delimiters: Delimitersdelimiters for the file parsing
comparison_modes: Vec<Mode>How numerical values shall be compared, strings are always checked for identity
exclude_field_regex: Option<String>Any field matching the given regex is excluded from comparison
preprocessing: Option<Vec<Preprocessor>>Preprocessing done to the csv files before beginning the comparison
Trait Implementations§
source§impl Clone for CSVCompareConfig
impl Clone for CSVCompareConfig
source§fn clone(&self) -> CSVCompareConfig
fn clone(&self) -> CSVCompareConfig
Returns a copy 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 CSVCompareConfig
impl Debug for CSVCompareConfig
source§impl Default for CSVCompareConfig
impl Default for CSVCompareConfig
source§fn default() -> CSVCompareConfig
fn default() -> CSVCompareConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CSVCompareConfig
impl<'de> Deserialize<'de> for CSVCompareConfig
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 JsonSchema for CSVCompareConfig
impl JsonSchema for CSVCompareConfig
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl RefUnwindSafe for CSVCompareConfig
impl Send for CSVCompareConfig
impl Sync for CSVCompareConfig
impl Unpin for CSVCompareConfig
impl UnwindSafe for CSVCompareConfig
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().