Enum rustc_hir::hir::ImplItemKind
source · [−]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
Const(&'hir Ty<'hir>, BodyId)
An associated constant of the given type, set to the constant result of the expression.
Fn(FnSig<'hir>, BodyId)
An associated function implementation with the given signature and body.
TyAlias(&'hir Ty<'hir>)
An associated type.
Trait Implementations
sourceimpl<'hir> Debug for ImplItemKind<'hir>
impl<'hir> Debug for ImplItemKind<'hir>
sourceimpl<'hir, __CTX> HashStable<__CTX> for ImplItemKind<'hir>where
__CTX: HashStableContext,
impl<'hir, __CTX> HashStable<__CTX> for ImplItemKind<'hir>where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. 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: 32 bytes
Size for each variant:
Const
: 16 bytesFn
: 32 bytesTyAlias
: 8 bytes