summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 063d2dc..a0843bb 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -53,6 +53,7 @@ impl Decodable for Delimiter {
}
}
+#[derive(Debug)]
pub struct Config {
path: Option<PathBuf>, // None implies <stdin>
idx_path: Option<PathBuf>,
@@ -275,6 +276,7 @@ impl Config {
.flexible(self.flexible)
.delimiter(self.delimiter)
.has_headers(!self.no_headers)
+ .quote(self.quote)
.from_reader(rdr)
}