pub enum MetaValue {
Path(Path),
Lit(Lit),
Symbol(Symbol),
}
Expand description
Represents a value in a meta name-value pair.
Variants§
Implementations§
Source§impl MetaValue
impl MetaValue
Sourcepub fn as_bool(&self) -> Option<bool>
pub fn as_bool(&self) -> Option<bool>
Returns the value of the literal if it is a boolean literal.
Sourcepub fn as_string(&self) -> Option<String>
pub fn as_string(&self) -> Option<String>
Returns the value of the literal if it is a string literal.
Sourcepub fn as_lit_int(&self) -> Option<&LitInt>
pub fn as_lit_int(&self) -> Option<&LitInt>
Returns the literal if it is an integer literal.
Sourcepub fn as_lit_bool(&self) -> Option<&LitBool>
pub fn as_lit_bool(&self) -> Option<&LitBool>
Returns the literal if it is a boolean literal.
Sourcepub fn as_lit_string(&self) -> Option<&LitStr>
pub fn as_lit_string(&self) -> Option<&LitStr>
Returns the literal if it is a string literal.
Trait Implementations§
Source§impl ToTokens for MetaValue
impl ToTokens for MetaValue
Source§fn to_tokens(&self, tokens: &mut TokenStream2)
fn to_tokens(&self, tokens: &mut TokenStream2)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Source§impl TryFrom<&MetaValue> for SignatureTopicArg
impl TryFrom<&MetaValue> for SignatureTopicArg
impl Eq for MetaValue
impl StructuralPartialEq for MetaValue
Auto Trait Implementations§
impl Freeze for MetaValue
impl RefUnwindSafe for MetaValue
impl !Send for MetaValue
impl !Sync for MetaValue
impl Unpin for MetaValue
impl UnwindSafe for MetaValue
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.