Enum rustdoc::clean::types::ItemKind [−][src]
pub(crate) enum ItemKind {
Show 28 variants
ExternCrateItem {
src: Option<Symbol>,
},
ImportItem(Import),
StructItem(Struct),
UnionItem(Union),
EnumItem(Enum),
FunctionItem(Function),
ModuleItem(Module),
TypedefItem(Typedef, bool),
OpaqueTyItem(OpaqueTy),
StaticItem(Static),
ConstantItem(Constant),
TraitItem(Trait),
TraitAliasItem(TraitAlias),
ImplItem(Impl),
TyMethodItem(Function),
MethodItem(Function, Option<Defaultness>),
StructFieldItem(Type),
VariantItem(Variant),
ForeignFunctionItem(Function),
ForeignStaticItem(Static),
ForeignTypeItem,
MacroItem(Macro),
ProcMacroItem(ProcMacro),
PrimitiveItem(PrimitiveType),
AssocConstItem(Type, Option<String>),
AssocTypeItem(Vec<GenericBound>, Option<Type>),
StrippedItem(Box<ItemKind>),
KeywordItem(Symbol),
}
Variants
ImportItem(Import)
Tuple Fields of ImportItem
0: Import
StructItem(Struct)
Tuple Fields of StructItem
0: Struct
UnionItem(Union)
Tuple Fields of UnionItem
0: Union
EnumItem(Enum)
Tuple Fields of EnumItem
0: Enum
FunctionItem(Function)
Tuple Fields of FunctionItem
0: Function
ModuleItem(Module)
Tuple Fields of ModuleItem
0: Module
OpaqueTyItem(OpaqueTy)
Tuple Fields of OpaqueTyItem
0: OpaqueTy
StaticItem(Static)
Tuple Fields of StaticItem
0: Static
ConstantItem(Constant)
Tuple Fields of ConstantItem
0: Constant
TraitItem(Trait)
Tuple Fields of TraitItem
0: Trait
TraitAliasItem(TraitAlias)
Tuple Fields of TraitAliasItem
0: TraitAlias
ImplItem(Impl)
Tuple Fields of ImplItem
0: Impl
TyMethodItem(Function)
A method signature only. Used for required methods in traits (ie, non-default-methods).
Tuple Fields of TyMethodItem
0: Function
MethodItem(Function, Option<Defaultness>)
A method with a body.
Tuple Fields of MethodItem
0: Function
1: Option<Defaultness>
StructFieldItem(Type)
Tuple Fields of StructFieldItem
0: Type
VariantItem(Variant)
Tuple Fields of VariantItem
0: Variant
ForeignFunctionItem(Function)
fn
s from an extern block
Tuple Fields of ForeignFunctionItem
0: Function
ForeignStaticItem(Static)
static
s from an extern block
Tuple Fields of ForeignStaticItem
0: Static
type
s from an extern block
MacroItem(Macro)
Tuple Fields of MacroItem
0: Macro
ProcMacroItem(ProcMacro)
Tuple Fields of ProcMacroItem
0: ProcMacro
PrimitiveItem(PrimitiveType)
Tuple Fields of PrimitiveItem
AssocTypeItem(Vec<GenericBound>, Option<Type>)
An associated item in a trait or trait impl.
The bounds may be non-empty if there is a where
clause.
The Option<Type>
is the default concrete type (e.g. trait Trait { type Target = usize; }
)
Tuple Fields of AssocTypeItem
0: Vec<GenericBound>
1: Option<Type>
An item that has been stripped by a rustdoc pass
KeywordItem(Symbol)
Tuple Fields of KeywordItem
0: Symbol
Implementations
Some items contain others such as structs (for their fields) and Enums (for their variants). This method returns those contained items.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ItemKind
impl !UnwindSafe for ItemKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
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: 224 bytes
Size for each variant:
ExternCrateItem
: 7 bytesImportItem
: 71 bytesStructItem
: 87 bytesUnionItem
: 87 bytesEnumItem
: 87 bytesFunctionItem
: 167 bytesModuleItem
: 39 bytesTypedefItem
: 199 bytesOpaqueTyItem
: 79 bytesStaticItem
: 95 bytesConstantItem
: 111 bytesTraitItem
: 111 bytesTraitAliasItem
: 79 bytesImplItem
: 223 bytesTyMethodItem
: 167 bytesMethodItem
: 167 bytesStructFieldItem
: 79 bytesVariantItem
: 47 bytesForeignFunctionItem
: 167 bytesForeignStaticItem
: 95 bytesForeignTypeItem
: 0 bytesMacroItem
: 31 bytesProcMacroItem
: 39 bytesPrimitiveItem
: 1 byteAssocConstItem
: 103 bytesAssocTypeItem
: 103 bytesStrippedItem
: 15 bytesKeywordItem
: 7 bytes