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: ImportStructItem(Struct)Tuple Fields of StructItem
0: StructUnionItem(Union)Tuple Fields of UnionItem
0: UnionEnumItem(Enum)Tuple Fields of EnumItem
0: EnumFunctionItem(Function)Tuple Fields of FunctionItem
0: FunctionModuleItem(Module)Tuple Fields of ModuleItem
0: ModuleOpaqueTyItem(OpaqueTy)Tuple Fields of OpaqueTyItem
0: OpaqueTyStaticItem(Static)Tuple Fields of StaticItem
0: StaticConstantItem(Constant)Tuple Fields of ConstantItem
0: ConstantTraitItem(Trait)Tuple Fields of TraitItem
0: TraitTraitAliasItem(TraitAlias)Tuple Fields of TraitAliasItem
0: TraitAliasImplItem(Impl)Tuple Fields of ImplItem
0: ImplTyMethodItem(Function)A method signature only. Used for required methods in traits (ie, non-default-methods).
Tuple Fields of TyMethodItem
0: FunctionMethodItem(Function, Option<Defaultness>)A method with a body.
Tuple Fields of MethodItem
0: Function1: Option<Defaultness>StructFieldItem(Type)Tuple Fields of StructFieldItem
0: TypeVariantItem(Variant)Tuple Fields of VariantItem
0: VariantForeignFunctionItem(Function)fns from an extern block
Tuple Fields of ForeignFunctionItem
0: FunctionForeignStaticItem(Static)statics from an extern block
Tuple Fields of ForeignStaticItem
0: Statictypes from an extern block
MacroItem(Macro)Tuple Fields of MacroItem
0: MacroProcMacroItem(ProcMacro)Tuple Fields of ProcMacroItem
0: ProcMacroPrimitiveItem(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: SymbolImplementations
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