Enum rustdoc::clean::types::ItemKind [−][src]
pub(crate) enum ItemKind {}Show 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)
StructItem(Struct)
UnionItem(Union)
EnumItem(Enum)
FunctionItem(Function)
ModuleItem(Module)
OpaqueTyItem(OpaqueTy)
StaticItem(Static)
ConstantItem(Constant)
TraitItem(Trait)
TraitAliasItem(TraitAlias)
ImplItem(Impl)
TyMethodItem(Function)
A method signature only. Used for required methods in traits (ie, non-default-methods).
MethodItem(Function, Option<Defaultness>)
A method with a body.
StructFieldItem(Type)
VariantItem(Variant)
ForeignFunctionItem(Function)
fn
s from an extern block
ForeignStaticItem(Static)
static
s from an extern block
type
s from an extern block
MacroItem(Macro)
ProcMacroItem(ProcMacro)
PrimitiveItem(PrimitiveType)
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; }
)
An item that has been stripped by a rustdoc pass
KeywordItem(Symbol)
Implementations
impl ItemKind
[src]
pub(crate) fn inner_items(&self) -> impl Iterator<Item = &Item>
[src]
Some items contain others such as structs (for their fields) and Enums (for their variants). This method returns those contained items.
pub(crate) fn is_type_alias(&self) -> bool
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,