Enum rustc_ast::ast::VariantData [−][src]
Expand description
Fields and constructor ids of enum variants and structs.
Variants
Struct variant.
E.g., Bar { .. }
as in enum Foo { Bar { .. } }
.
Tuple variant.
E.g., Bar(..)
as in enum Foo { Bar(..) }
.
Unit(NodeId)
Unit variant.
E.g., Bar = ..
as in enum Foo { Bar = .. }
.
Tuple Fields of Unit
0: NodeId
Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for VariantData
impl !Send for VariantData
impl !Sync for VariantData
impl Unpin for VariantData
impl !UnwindSafe for VariantData
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
Struct
: 31 bytesTuple
: 31 bytesUnit
: 7 bytes