Some automated fixes suggested by cargo clippy --fix

This commit is contained in:
Lorenzo Mec-iS
2025-01-20 15:04:21 +00:00
parent 68fd27f8f4
commit 58ee0cb8d1
10 changed files with 43 additions and 49 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ pub struct CSVDefinition<'a> {
/// What seperates the fields in your csv-file?
field_seperator: &'a str,
}
impl<'a> Default for CSVDefinition<'a> {
impl Default for CSVDefinition<'_> {
fn default() -> Self {
Self {
n_rows_header: 1,