Enum rustc_ast::ast::ItemKind [−][src]
pub enum ItemKind {
Show 17 variants
ExternCrate(Option<Symbol>),
Use(UseTree),
Static(P<Ty>, Mutability, Option<P<Expr>>),
Const(Defaultness, P<Ty>, Option<P<Expr>>),
Fn(Box<FnKind>),
Mod(Unsafe, ModKind),
ForeignMod(ForeignMod),
GlobalAsm(InlineAsm),
TyAlias(Box<TyAliasKind>),
Enum(EnumDef, Generics),
Struct(VariantData, Generics),
Union(VariantData, Generics),
Trait(Box<TraitKind>),
TraitAlias(Generics, GenericBounds),
Impl(Box<ImplKind>),
MacCall(MacCall),
MacroDef(MacroDef),
}
Variants
An extern crate
item, with the optional original crate name if the crate was renamed.
E.g., extern crate foo
or extern crate foo_bar as foo
.
Use(UseTree)
A use declaration item (use
).
E.g., use foo;
, use foo::bar;
or use foo::bar as FooBar;
.
Tuple Fields of Use
0: UseTree
A static item (static
).
E.g., static FOO: i32 = 42;
or static FOO: &'static str = "bar";
.
A constant item (const
).
E.g., const FOO: i32 = 42;
.
A function declaration (fn
).
E.g., fn foo(bar: usize) -> usize { .. }
.
A module declaration (mod
).
E.g., mod foo;
or mod foo { .. }
.
unsafe
keyword on modules is accepted syntactically for macro DSLs, but not
semantically by Rust.
ForeignMod(ForeignMod)
An external module (extern
).
E.g., extern {}
or extern "C" {}
.
Tuple Fields of ForeignMod
0: ForeignMod
GlobalAsm(InlineAsm)
Module-level inline assembly (from global_asm!()
).
Tuple Fields of GlobalAsm
0: InlineAsm
TyAlias(Box<TyAliasKind>)
A type alias (type
).
E.g., type Foo = Bar<u8>;
.
Tuple Fields of TyAlias
0: Box<TyAliasKind>
An enum definition (enum
).
E.g., enum Foo<A, B> { C<A>, D<B> }
.
Struct(VariantData, Generics)
A struct definition (struct
).
E.g., struct Foo<A> { x: A }
.
Tuple Fields of Struct
0: VariantData
1: Generics
Union(VariantData, Generics)
A union definition (union
).
E.g., union Foo<A, B> { x: A, y: B }
.
Tuple Fields of Union
0: VariantData
1: Generics
A trait declaration (trait
).
E.g., trait Foo { .. }
, trait Foo<T> { .. }
or auto trait Foo {}
.
TraitAlias(Generics, GenericBounds)
Trait alias
E.g., trait Foo = Bar + Quux;
.
Tuple Fields of TraitAlias
0: Generics
1: GenericBounds
An implementation.
E.g., impl<A> Foo<A> { .. }
or impl<A> Trait for Foo<A> { .. }
.
MacCall(MacCall)
A macro invocation.
E.g., foo!(..)
.
Tuple Fields of MacCall
0: MacCall
MacroDef(MacroDef)
A macro definition.
Tuple Fields of MacroDef
0: MacroDef
Implementations
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ItemKind
impl !UnwindSafe for ItemKind
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: 112 bytes
Size for each variant:
ExternCrate
: 7 bytesUse
: 87 bytesStatic
: 23 bytesConst
: 31 bytesFn
: 15 bytesMod
: 55 bytesForeignMod
: 71 bytesGlobalAsm
: 111 bytesTyAlias
: 15 bytesEnum
: 103 bytesStruct
: 111 bytesUnion
: 111 bytesTrait
: 15 bytesTraitAlias
: 103 bytesImpl
: 15 bytesMacCall
: 71 bytesMacroDef
: 23 bytes