Enum rustc_ast::ast::AssocItemKind [−][src]
pub enum AssocItemKind {
Const(Defaultness, P<Ty>, Option<P<Expr>>),
Fn(Box<FnKind>),
TyAlias(Box<TyAliasKind>),
MacCall(MacCall),
}
Expand description
Represents associated item kinds.
The term “provided” in the variants below refers to the item having a default
definition / body. Meanwhile, a “required” item lacks a definition / body.
In an implementation, all items must be provided.
The Option
s below denote the bodies, where Some(_)
means “provided” and conversely None
means “required”.
Variants
An associated constant, const $ident: $ty $def?;
where def ::= "=" $expr? ;
.
If def
is parsed, then the constant is provided, and otherwise required.
An associated function.
TyAlias(Box<TyAliasKind>)
An associated type.
Tuple Fields of TyAlias
0: Box<TyAliasKind>
MacCall(MacCall)
A macro expanding to associated items.
Tuple Fields of MacCall
0: MacCall
Implementations
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for AssocItemKind
impl !Send for AssocItemKind
impl !Sync for AssocItemKind
impl Unpin for AssocItemKind
impl !UnwindSafe for AssocItemKind
Blanket Implementations
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: 72 bytes
Size for each variant:
Const
: 28 bytesFn
: 12 bytesTyAlias
: 12 bytesMacCall
: 68 bytes