Update diagnostics.rs
This commit is contained in:
parent
8c90046308
commit
a0628ef3d1
1 changed files with 2 additions and 2 deletions
|
|
@ -1641,13 +1641,13 @@ impl Foo {
|
|||
These attributes do not work on typedefs, since typedefs are just aliases.
|
||||
|
||||
Representations like `#[repr(u8)]`, `#[repr(i64)]` are for selecting the
|
||||
discriminant size for C-like enums (when there is no associated data, e.g.
|
||||
discriminant size for enums with no data fields on any of the variants, e.g.
|
||||
`enum Color {Red, Blue, Green}`), effectively setting the size of the enum to
|
||||
the size of the provided type. Such an enum can be cast to a value of the same
|
||||
type as well. In short, `#[repr(u8)]` makes the enum behave like an integer
|
||||
with a constrained set of allowed values.
|
||||
|
||||
Only C-like enums can be cast to numerical primitives, so this attribute will
|
||||
Only field-less enums can be cast to numerical primitives, so this attribute will
|
||||
not apply to structs.
|
||||
|
||||
`#[repr(packed)]` reduces padding to make the struct size smaller. The
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue