Skip to content
New issue

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

Fix #305 Implement Debug for many types #335

Merged
merged 6 commits into from Jun 13, 2017
Merged

Commits on May 10, 2017

  1. Fix #305 Implement Debug for many types

    For most types it was a simple matter of adding #[derive(Debug)] but
    ParseOptions needed a manual implementation because the type of
    log_syntax_violation is Option<&'a Fn(&'static str)> and Fn doesn't
    implement Debug. log_syntax_violation is formatter as Some(Fn(&'static
    str)) or None depending upon its value.
    imor committed May 10, 2017
  2. Fix failing build on travis-ci

    Implemented Debug for EncodingOverride as EncodingRef doesn't implement
    Debug. Field 'encoding' is formatted as Some(EncodingOverride) or None
    based on its value.
    imor committed May 10, 2017
  3. Add missing 'use' declarations

    imor committed May 10, 2017
  4. Remove unused import

    imor committed May 10, 2017

Commits on May 12, 2017

  1. Add encoding name in Debug impl for readability

    imor committed May 12, 2017
  2. Add missing Debug impl for *_ENCODE_SET in define_encode_set macro

    imor committed May 12, 2017
You can’t perform that action at this time.