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

Override read_exact and write_all #75

Merged
merged 4 commits into from Jul 26, 2022

Commits on Jul 24, 2022

  1. Override read_exact and write_all

    Some types override these methods to provide optimizations. Using
    default implementations would bypass those overrides and lead to worse
    performance.
    
    Overriding the methods to delegate implementations directly solves the
    problem.
    Kixunil committed Jul 24, 2022
    Copy the full SHA
    5dbcc98 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Override Read::read_to_string

    cuviper committed Jul 26, 2022
    Copy the full SHA
    dc62774 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    b086bed View commit details
    Browse the repository at this point in the history
  3. Override Write::write_fmt

    cuviper committed Jul 26, 2022
    Copy the full SHA
    1204a49 View commit details
    Browse the repository at this point in the history