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

Scope format! temporaries #64856

Merged
merged 5 commits into from
Nov 24, 2019
Merged

Scope format! temporaries #64856

merged 5 commits into from
Nov 24, 2019

Commits on Sep 27, 2019

  1. Scope format! temporaries

    This places the temporaries that `format!` generates to refer to its
    arguments (through `&dyn Trait`) in a short-lived scope surrounding just
    the invocation of `format!`. This enables `format!` to be used in
    generators without the temporaries preventing the generator from being
    `Send` (due to `dyn Trait` not being `Sync`).
    
    See rust-lang#64477 for details.
    jonhoo committed Sep 27, 2019
    Configuration menu
    Copy the full SHA
    06e4ff4 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2019

  1. Configuration menu
    Copy the full SHA
    4d34ce2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c7f6df0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8990f7d View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2019

  1. Configuration menu
    Copy the full SHA
    31fc42b View commit details
    Browse the repository at this point in the history