We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Allow read non-standard CSV.
background: I plan to read external CSV source, that have non-standard escape rule.
Describe the solution you'd like
escape: Option<u8>
pub fn with_escape( mut self, escape: u8 ) -> Self
pub(crate) fn from_builder( builder: ReaderBuilder ) -> Self
pub fn build<R: Read + Seek>(self, mut reader: R) -> Result<Reader<R>>
from_builder
Describe alternatives you've considered
add pub fn from_csv_reader( csv_reader: crate_csv::Reader ) ->Self to Reader use custom builded csv_reader
pub fn from_csv_reader( csv_reader: crate_csv::Reader ) ->Self
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Allow read non-standard CSV.
background: I plan to read external CSV source, that have non-standard escape rule.
Describe the solution you'd like
escape: Option<u8>
field to ReaderBuilder.pub fn with_escape( mut self, escape: u8 ) -> Self
method to ReaderBuilder.pub(crate) fn from_builder( builder: ReaderBuilder ) -> Self
to Readerand handle builder options
pub fn build<R: Read + Seek>(self, mut reader: R) -> Result<Reader<R>>
on ReaderBuildercall
from_builder
Describe alternatives you've considered
add
pub fn from_csv_reader( csv_reader: crate_csv::Reader ) ->Self
to Readeruse custom builded csv_reader
The text was updated successfully, but these errors were encountered: