auto merge of #13076 : FlaPer87/rust/remove-freeze, r=alexcrichton
This PR removes the `Freeze` kind and the `NoFreeze` marker completely. Fixes #12577 cc @nikomatsakis r?
This commit is contained in:
commit
7e7a5e3d3e
34 changed files with 72 additions and 224 deletions
|
|
@ -116,8 +116,8 @@ pub enum Implementor {
|
|||
///
|
||||
/// This structure purposefully does not implement `Clone` because it's intended
|
||||
/// to be a fairly large and expensive structure to clone. Instead this adheres
|
||||
/// to both `Send` and `Freeze` so it may be stored in a `Arc` instance and
|
||||
/// shared among the various rendering tasks.
|
||||
/// to `Send` so it may be stored in a `Arc` instance and shared among the various
|
||||
/// rendering tasks.
|
||||
pub struct Cache {
|
||||
/// Mapping of typaram ids to the name of the type parameter. This is used
|
||||
/// when pretty-printing a type (so pretty printing doesn't have to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue