pub enum ItemKind {
Show 19 variants
ExternCrate(Option<Symbol>),
Use(UseTree),
Static(Box<StaticItem>),
Const(Box<ConstItem>),
Fn(Box<Fn>),
Mod(Safety, 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),
Delegation(Box<Delegation>),
DelegationMac(Box<DelegationMac>),
}
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(Safety, 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.
Delegation(Box<Delegation>)
A single delegation item (reuse
).
E.g. reuse <Type as Trait>::name { target_expr_template }
.
DelegationMac(Box<DelegationMac>)
A list or glob delegation item (reuse prefix::{a, b, c}
, reuse prefix::*
).
Treated similarly to a macro call and expanded early.
Implementations§
Trait Implementations§
source§impl<__D: SpanDecoder> Decodable<__D> for ItemKind
impl<__D: SpanDecoder> Decodable<__D> for ItemKind
source§impl<__E: SpanEncoder> Encodable<__E> for ItemKind
impl<__E: SpanEncoder> Encodable<__E> for ItemKind
source§impl From<AssocItemKind> for ItemKind
impl From<AssocItemKind> for ItemKind
source§fn from(assoc_item_kind: AssocItemKind) -> ItemKind
fn from(assoc_item_kind: AssocItemKind) -> ItemKind
source§impl From<ForeignItemKind> for ItemKind
impl From<ForeignItemKind> for ItemKind
source§fn from(foreign_item_kind: ForeignItemKind) -> ItemKind
fn from(foreign_item_kind: ForeignItemKind) -> ItemKind
source§impl TryFrom<ItemKind> for AssocItemKind
impl TryFrom<ItemKind> for AssocItemKind
source§impl TryFrom<ItemKind> for ForeignItemKind
impl TryFrom<ItemKind> for ForeignItemKind
source§impl WalkItemKind for ItemKind
impl WalkItemKind for ItemKind
Auto Trait Implementations§
impl Freeze for ItemKind
impl !RefUnwindSafe for ItemKind
impl !Send for ItemKind
impl !Sync for ItemKind
impl Unpin for ItemKind
impl !UnwindSafe for ItemKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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
: 12 bytesUse
: 64 bytesStatic
: 16 bytesConst
: 16 bytesFn
: 16 bytesMod
: 56 bytesForeignMod
: 56 bytesGlobalAsm
: 16 bytesTyAlias
: 16 bytesEnum
: 56 bytesStruct
: 64 bytesUnion
: 64 bytesTrait
: 16 bytesTraitAlias
: 64 bytesImpl
: 16 bytesMacCall
: 16 bytesMacroDef
: 24 bytesDelegation
: 16 bytesDelegationMac
: 16 bytes