pub(crate) enum ItemKind {
Show 29 variants
ExternCrateItem {
src: Option<Symbol>,
},
ImportItem(Import),
StructItem(Struct),
UnionItem(Union),
EnumItem(Enum),
FunctionItem(Box<Function>),
ModuleItem(Module),
TypeAliasItem(Box<TypeAlias>),
StaticItem(Static),
TraitItem(Box<Trait>),
TraitAliasItem(TraitAlias),
ImplItem(Box<Impl>),
TyMethodItem(Box<Function>),
MethodItem(Box<Function>, Option<Defaultness>),
StructFieldItem(Type),
VariantItem(Variant),
ForeignFunctionItem(Box<Function>, Safety),
ForeignStaticItem(Static, Safety),
ForeignTypeItem,
MacroItem(Macro),
ProcMacroItem(ProcMacro),
PrimitiveItem(PrimitiveType),
TyAssocConstItem(Generics, Box<Type>),
ConstantItem(Box<Constant>),
AssocConstItem(Box<Constant>),
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>)
StaticItem(Static)
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>, Safety)
fn
s from an extern block
ForeignStaticItem(Static, Safety)
static
s from an extern block
ForeignTypeItem
type
s from an extern block
MacroItem(Macro)
ProcMacroItem(ProcMacro)
PrimitiveItem(PrimitiveType)
TyAssocConstItem(Generics, Box<Type>)
A required associated constant in a trait declaration.
ConstantItem(Box<Constant>)
AssocConstItem(Box<Constant>)
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 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>
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: 48 bytes
Size for each variant:
ExternCrateItem
: 7 bytesImportItem
: 47 bytesStructItem
: 39 bytesUnionItem
: 47 bytesEnumItem
: 47 bytesFunctionItem
: 15 bytesModuleItem
: 39 bytesTypeAliasItem
: 15 bytesStaticItem
: 31 bytesTraitItem
: 15 bytesTraitAliasItem
: 47 bytesImplItem
: 15 bytesTyMethodItem
: 15 bytesMethodItem
: 15 bytesStructFieldItem
: 39 bytesVariantItem
: 39 bytesForeignFunctionItem
: 15 bytesForeignStaticItem
: 31 bytesForeignTypeItem
: 0 bytesMacroItem
: 31 bytesProcMacroItem
: 39 bytesPrimitiveItem
: 1 byteTyAssocConstItem
: 31 bytesConstantItem
: 15 bytesAssocConstItem
: 15 bytesTyAssocTypeItem
: 47 bytesAssocTypeItem
: 39 bytesStrippedItem
: 15 bytesKeywordItem
: 0 bytes