Enum rustc_hir::hir::ImplItemKind [−][src]
pub enum ImplItemKind<'hir> {
Const(&'hir Ty<'hir>, BodyId),
Fn(FnSig<'hir>, BodyId),
TyAlias(&'hir Ty<'hir>),
}
Expand description
Represents various kinds of content within an impl
.
Variants
An associated constant of the given type, set to the constant result of the expression.
An associated function implementation with the given signature and body.
TyAlias(&'hir Ty<'hir>)
An associated type.
Tuple Fields of TyAlias
0: &'hir Ty<'hir>
Trait Implementations
Auto Trait Implementations
impl<'hir> RefUnwindSafe for ImplItemKind<'hir>
impl<'hir> !Send for ImplItemKind<'hir>
impl<'hir> !Sync for ImplItemKind<'hir>
impl<'hir> Unpin for ImplItemKind<'hir>
impl<'hir> UnwindSafe for ImplItemKind<'hir>
Blanket Implementations
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: 40 bytes
Size for each variant:
Const
: 20 bytesFn
: 36 bytesTyAlias
: 12 bytes