Enum rustc_ast::ast::MetaItemKind
source · [−]pub enum MetaItemKind {
Word,
List(Vec<NestedMetaItem>),
NameValue(Lit),
}
Expand description
A compile-time attribute item.
E.g., #[test]
, #[derive(..)]
or #[feature = "foo"]
.
Variants
Word
Word meta item.
E.g., test
as in #[test]
.
List(Vec<NestedMetaItem>)
List meta item.
E.g., derive(..)
as in #[derive(..)]
.
NameValue(Lit)
Name value meta item.
E.g., feature = "foo"
as in #[feature = "foo"]
.
Implementations
sourceimpl MetaItemKind
impl MetaItemKind
pub fn value_str(&self) -> Option<Symbol>
pub fn mac_args(&self, span: Span) -> MacArgs
fn token_trees(&self, span: Span) -> Vec<TokenTree>
fn list_from_tokens(tokens: TokenStream) -> Option<MetaItemKind>
fn name_value_from_tokens(
tokens: &mut impl Iterator<Item = TokenTree>
) -> Option<MetaItemKind>
fn from_mac_args(args: &MacArgs) -> Option<MetaItemKind>
fn from_tokens(
tokens: &mut Peekable<impl Iterator<Item = TokenTree>>
) -> Option<MetaItemKind>
Trait Implementations
sourceimpl Clone for MetaItemKind
impl Clone for MetaItemKind
sourcefn clone(&self) -> MetaItemKind
fn clone(&self) -> MetaItemKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MetaItemKind
impl Debug for MetaItemKind
sourceimpl<__D: Decoder> Decodable<__D> for MetaItemKind
impl<__D: Decoder> Decodable<__D> for MetaItemKind
sourceimpl<__CTX> HashStable<__CTX> for MetaItemKindwhere
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for MetaItemKindwhere
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
Auto Trait Implementations
impl !RefUnwindSafe for MetaItemKind
impl !Send for MetaItemKind
impl !Sync for MetaItemKind
impl Unpin for MetaItemKind
impl !UnwindSafe for MetaItemKind
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: 48 bytes
Size for each variant:
Word
: 0 bytesList
: 24 bytesNameValue
: 48 bytes