Enum rustc_ap_rustc_ast::ast::ItemKind[][src]

pub enum ItemKind {
Show variants ExternCrate(Option<Symbol>), Use(UseTree), Static(P<Ty>, MutabilityOption<P<Expr>>), Const(DefaultnessP<Ty>, Option<P<Expr>>), Fn(Box<FnKind>), Mod(UnsafeModKind), ForeignMod(ForeignMod), GlobalAsm(InlineAsm), TyAlias(Box<TyAliasKind>), Enum(EnumDefGenerics), Struct(VariantDataGenerics), Union(VariantDataGenerics), Trait(Box<TraitKind>), TraitAlias(GenericsGenericBounds), Impl(Box<ImplKind>), MacCall(MacCall), MacroDef(MacroDef),
}

Variants

ExternCrate(Option<Symbol>)

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;.

Static(P<Ty>, MutabilityOption<P<Expr>>)

A static item (static).

E.g., static FOO: i32 = 42; or static FOO: &'static str = "bar";.

Const(DefaultnessP<Ty>, Option<P<Expr>>)

A constant item (const).

E.g., const FOO: i32 = 42;.

Fn(Box<FnKind>)

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" {}.

GlobalAsm(InlineAsm)

Module-level inline assembly (from global_asm!()).

TyAlias(Box<TyAliasKind>)

A type alias (type).

E.g., type Foo = Bar<u8>;.

An enum definition (enum).

E.g., enum Foo<A, B> { C<A>, D<B> }.

A struct definition (struct).

E.g., struct Foo<A> { x: A }.

A union definition (union).

E.g., union Foo<A, B> { x: A, y: B }.

Trait(Box<TraitKind>)

A trait declaration (trait).

E.g., trait Foo { .. }, trait Foo<T> { .. } or auto trait Foo {}.

TraitAlias(GenericsGenericBounds)

Trait alias

E.g., trait Foo = Bar + Quux;.

Impl(Box<ImplKind>)

An implementation.

E.g., impl<A> Foo<A> { .. } or impl<A> Trait for Foo<A> { .. }.

MacCall(MacCall)

A macro invocation.

E.g., foo!(..).

MacroDef(MacroDef)

A macro definition.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.