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
Currently each character string type has its own read_*/write_* fn which every Reader/Writer must implement
read_*
write_*
Reader
Writer
fn read_utf8string<C: utf8string::Constraint>(&mut self) -> Result<String, Self::Error>; fn read_ia5string<C: ia5string::Constraint>(&mut self) -> Result<String, Self::Error>; fn read_numeric_string<C: numericstring::Constraint>(&mut self) -> Result<String, Self::Error>; fn read_visible_string<C: visiblestring::Constraint>(&mut self) -> Result<String, Self::Error>; fn read_printable_string<C: printablestring::Constraint>( &mut self, ) -> Result<String, Self::Error>;
Consider a common fn (like read_characters?) and pass the Charset as (type) parameter? Same with the Utf8String, Ia5String, ... types.
read_characters
Utf8String
Ia5String
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently each character string type has its own
read_*
/write_*
fn which everyReader
/Writer
must implementConsider a common fn (like
read_characters
?) and pass the Charset as (type) parameter? Same with theUtf8String
,Ia5String
, ... types.The text was updated successfully, but these errors were encountered: