pub(crate) enum ItemKind {
Show 30 variants
ExternCrateItem {
src: Option<Symbol>,
},
ImportItem(Import),
StructItem(Struct),
UnionItem(Union),
EnumItem(Enum),
FunctionItem(Box<Function>),
ModuleItem(Module),
TypeAliasItem(Box<TypeAlias>),
OpaqueTyItem(OpaqueTy),
StaticItem(Static),
ConstantItem(Constant),
TraitItem(Box<Trait>),
TraitAliasItem(TraitAlias),
ImplItem(Box<Impl>),
TyMethodItem(Box<Function>),
MethodItem(Box<Function>, Option<Defaultness>),
StructFieldItem(Type),
VariantItem(Variant),
ForeignFunctionItem(Box<Function>),
ForeignStaticItem(Static),
ForeignTypeItem,
MacroItem(Macro),
ProcMacroItem(ProcMacro),
PrimitiveItem(PrimitiveType),
TyAssocConstItem(Box<Generics>, Type),
AssocConstItem(Box<Generics>, Type, ConstantKind),
TyAssocTypeItem(Generics, Vec<GenericBound>),
AssocTypeItem(Box<TypeAlias>, Vec<GenericBound>),
StrippedItem(Box<ItemKind>),
KeywordItem,
}
Variants§
ExternCrateItem
ImportItem(Import)
StructItem(Struct)
UnionItem(Union)
EnumItem(Enum)
FunctionItem(Box<Function>)
ModuleItem(Module)
TypeAliasItem(Box<TypeAlias>)
OpaqueTyItem(OpaqueTy)
StaticItem(Static)
ConstantItem(Constant)
TraitItem(Box<Trait>)
TraitAliasItem(TraitAlias)
ImplItem(Box<Impl>)
TyMethodItem(Box<Function>)
A required method in a trait declaration meaning it’s only a function signature.
MethodItem(Box<Function>, Option<Defaultness>)
A method in a trait impl or a provided method in a trait declaration.
Compared to TyMethodItem, it also contains a method body.
StructFieldItem(Type)
VariantItem(Variant)
ForeignFunctionItem(Box<Function>)
fn
s from an extern block
ForeignStaticItem(Static)
static
s from an extern block
ForeignTypeItem
type
s from an extern block
MacroItem(Macro)
ProcMacroItem(ProcMacro)
PrimitiveItem(PrimitiveType)
TyAssocConstItem(Box<Generics>, Type)
A required associated constant in a trait declaration.
AssocConstItem(Box<Generics>, Type, ConstantKind)
An associated constant in a trait impl or a provided one in a trait declaration.
TyAssocTypeItem(Generics, Vec<GenericBound>)
A required associated type in a trait declaration.
The bounds may be non-empty if there is a where
clause.
AssocTypeItem(Box<TypeAlias>, Vec<GenericBound>)
An associated type in a trait impl or a provided one in a trait declaration.
StrippedItem(Box<ItemKind>)
An item that has been stripped by a rustdoc pass
KeywordItem
Implementations§
source§impl ItemKind
impl ItemKind
sourcepub(crate) fn inner_items(&self) -> impl Iterator<Item = &Item>
pub(crate) fn inner_items(&self) -> impl Iterator<Item = &Item>
Some items contain others such as structs (for their fields) and Enums (for their variants). This method returns those contained items.
sourcepub(crate) fn is_non_assoc(&self) -> bool
pub(crate) fn is_non_assoc(&self) -> bool
Returns true
if this item does not appear inside an impl block.
Trait Implementations§
Auto Trait Implementations§
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> 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> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
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: 72 bytes
Size for each variant:
ExternCrateItem
: 7 bytesImportItem
: 47 bytesStructItem
: 55 bytesUnionItem
: 47 bytesEnumItem
: 47 bytesFunctionItem
: 15 bytesModuleItem
: 39 bytesTypeAliasItem
: 15 bytesOpaqueTyItem
: 47 bytesStaticItem
: 55 bytesConstantItem
: 71 bytesTraitItem
: 15 bytesTraitAliasItem
: 47 bytesImplItem
: 15 bytesTyMethodItem
: 15 bytesMethodItem
: 15 bytesStructFieldItem
: 39 bytesVariantItem
: 55 bytesForeignFunctionItem
: 15 bytesForeignStaticItem
: 55 bytesForeignTypeItem
: 0 bytesMacroItem
: 31 bytesProcMacroItem
: 39 bytesPrimitiveItem
: 1 byteTyAssocConstItem
: 47 bytesAssocConstItem
: 71 bytesTyAssocTypeItem
: 47 bytesAssocTypeItem
: 39 bytesStrippedItem
: 15 bytesKeywordItem
: 0 bytes