Enum rustc_ast::ast::ItemKind

source ·
pub enum ItemKind {
Show 17 variants ExternCrate(Option<Symbol>), Use(UseTree), Static(Box<StaticItem>), Const(Box<ConstItem>), Fn(Box<Fn>), Mod(Unsafe, ModKind), ForeignMod(ForeignMod), GlobalAsm(Box<InlineAsm>), TyAlias(Box<TyAlias>), Enum(EnumDef, Generics), Struct(VariantData, Generics), Union(VariantData, Generics), Trait(Box<Trait>), TraitAlias(Generics, GenericBounds), Impl(Box<Impl>), MacCall(P<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(Box<StaticItem>)

A static item (static).

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

§

Const(Box<ConstItem>)

A constant item (const).

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

§

Fn(Box<Fn>)

A function declaration (fn).

E.g., fn foo(bar: usize) -> usize { .. }.

§

Mod(Unsafe, ModKind)

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(Box<InlineAsm>)

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

§

TyAlias(Box<TyAlias>)

A type alias (type).

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

§

Enum(EnumDef, Generics)

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

§

Union(VariantData, Generics)

A union definition (union).

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

§

Trait(Box<Trait>)

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

§

Impl(Box<Impl>)

An implementation.

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

§

MacCall(P<MacCall>)

A macro invocation.

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

§

MacroDef(MacroDef)

A macro definition.

Implementations§

source§

impl ItemKind

source

pub fn article(&self) -> &'static str

source

pub fn descr(&self) -> &'static str

source

pub fn generics(&self) -> Option<&Generics>

Trait Implementations§

source§

impl Clone for ItemKind

source§

fn clone(&self) -> ItemKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ItemKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: Decoder> Decodable<__D> for ItemKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: Encoder> Encodable<__E> for ItemKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl From<AssocItemKind> for ItemKind

source§

fn from(assoc_item_kind: AssocItemKind) -> ItemKind

Converts to this type from the input type.
source§

impl From<ForeignItemKind> for ItemKind

source§

fn from(foreign_item_kind: ForeignItemKind) -> ItemKind

Converts to this type from the input type.
source§

impl TryFrom<ItemKind> for AssocItemKind

§

type Error = ItemKind

The type returned in the event of a conversion error.
source§

fn try_from(item_kind: ItemKind) -> Result<AssocItemKind, ItemKind>

Performs the conversion.
source§

impl TryFrom<ItemKind> for ForeignItemKind

§

type Error = ItemKind

The type returned in the event of a conversion error.
source§

fn try_from(item_kind: ItemKind) -> Result<ForeignItemKind, ItemKind>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

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: 64 bytes

Size for each variant:

  • ExternCrate: 4 bytes
  • Use: 48 bytes
  • Static: 8 bytes
  • Const: 8 bytes
  • Fn: 8 bytes
  • Mod: 48 bytes
  • ForeignMod: 48 bytes
  • GlobalAsm: 8 bytes
  • TyAlias: 8 bytes
  • Enum: 48 bytes
  • Struct: 56 bytes
  • Union: 56 bytes
  • Trait: 8 bytes
  • TraitAlias: 64 bytes
  • Impl: 8 bytes
  • MacCall: 8 bytes
  • MacroDef: 16 bytes