| Age | Commit message (Collapse) | Author | Lines |
|
per #3543
|
|
|
|
Superficial change, no review.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This will help with the auto_serialize2 migration. We have to change
ident from a type alias to uint into a unique type. We need to use
a struct instead of a "enum ident = token::str_num" because structs
support constants, but newtypes do not.
|
|
|
|
|
|
|
|
#[legacy_exports];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Closes #3302
|
|
|
|
|
|
|
|
|
|
|
|
This optimizes away a copy.
|
|
|
|
|
|
|
|
|
|
|
|
There is also code for ~Trait and &Trait, but these are currently (incorrectly)
synonyms for "as @Trait" and "as &Trait".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|