pub enum MetaItemInner {
MetaItem(MetaItem),
Lit(MetaItemLit),
}
Expand description
Values inside meta item lists.
E.g., each of Clone
, Copy
in #[derive(Clone, Copy)]
.
Variants§
MetaItem(MetaItem)
A full MetaItem, for recursive meta items.
Lit(MetaItemLit)
A literal.
E.g., "foo"
, 64
, true
.
Implementations§
source§impl MetaItemInner
impl MetaItemInner
pub fn span(&self) -> Span
sourcepub fn ident(&self) -> Option<Ident>
pub fn ident(&self) -> Option<Ident>
For a single-segment meta item, returns its name; otherwise, returns None
.
pub fn name_or_empty(&self) -> Symbol
sourcepub fn has_name(&self, name: Symbol) -> bool
pub fn has_name(&self, name: Symbol) -> bool
Returns true
if this list item is a MetaItem with a name of name
.
sourcepub fn meta_item_list(&self) -> Option<&[MetaItemInner]>
pub fn meta_item_list(&self) -> Option<&[MetaItemInner]>
Gets a list of inner meta items from a list MetaItem
type.
sourcepub fn singleton_lit_list(&self) -> Option<(Symbol, &MetaItemLit)>
pub fn singleton_lit_list(&self) -> Option<(Symbol, &MetaItemLit)>
If it’s a singleton list of the form foo(lit)
, returns the foo
and
the lit
.
sourcepub fn name_value_literal_span(&self) -> Option<Span>
pub fn name_value_literal_span(&self) -> Option<Span>
sourcepub fn value_str(&self) -> Option<Symbol>
pub fn value_str(&self) -> Option<Symbol>
Gets the string value if self
is a MetaItem
and the MetaItem
is a
MetaItemKind::NameValue
variant containing a string, otherwise None
.
sourcepub fn lit(&self) -> Option<&MetaItemLit>
pub fn lit(&self) -> Option<&MetaItemLit>
Returns the MetaItemLit
if self
is a MetaItemInner::Literal
s.
sourcepub fn meta_item_or_bool(&self) -> Option<&MetaItemInner>
pub fn meta_item_or_bool(&self) -> Option<&MetaItemInner>
Returns the MetaItem
if self
is a MetaItemInner::MetaItem
or if it’s
MetaItemInner::Lit(MetaItemLit { kind: LitKind::Bool(_), .. })
.
sourcepub fn meta_item(&self) -> Option<&MetaItem>
pub fn meta_item(&self) -> Option<&MetaItem>
Returns the MetaItem
if self
is a MetaItemInner::MetaItem
.
sourcepub fn is_meta_item(&self) -> bool
pub fn is_meta_item(&self) -> bool
Returns true
if the variant is MetaItem
.
fn from_tokens<'a, I>(tokens: &mut Peekable<I>) -> Option<MetaItemInner>
Trait Implementations§
source§impl Clone for MetaItemInner
impl Clone for MetaItemInner
source§fn clone(&self) -> MetaItemInner
fn clone(&self) -> MetaItemInner
source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MetaItemInner
impl Debug for MetaItemInner
source§impl<__D: SpanDecoder> Decodable<__D> for MetaItemInner
impl<__D: SpanDecoder> Decodable<__D> for MetaItemInner
source§impl<__E: SpanEncoder> Encodable<__E> for MetaItemInner
impl<__E: SpanEncoder> Encodable<__E> for MetaItemInner
source§impl<__CTX> HashStable<__CTX> for MetaItemInnerwhere
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for MetaItemInnerwhere
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
Auto Trait Implementations§
impl Freeze for MetaItemInner
impl !RefUnwindSafe for MetaItemInner
impl !Send for MetaItemInner
impl !Sync for MetaItemInner
impl Unpin for MetaItemInner
impl !UnwindSafe for MetaItemInner
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 88 bytes
Size for each variant:
MetaItem
: 88 bytesLit
: 40 bytes