pub enum MetaArg {
Literal(Lit),
Path(Path),
NameValue(MetaArgNameValue),
}
Expand description
Drop-in replacement for syn::NestedMeta
, which allows to parse
attributes which can have arguments made of either literal, path or
MetaArgNameValue
expressions.
Variants§
Literal(Lit)
Attribute argument in form of literal
Path(Path)
Attribute argument in form of a path
NameValue(MetaArgNameValue)
Attribute argument in form of name = value
expression, where value
can be any ArgValue
-representable data
Trait Implementations§
Source§impl ToTokens for MetaArg
impl ToTokens for MetaArg
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
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,
Auto Trait Implementations§
impl Freeze for MetaArg
impl RefUnwindSafe for MetaArg
impl !Send for MetaArg
impl !Sync for MetaArg
impl Unpin for MetaArg
impl UnwindSafe for MetaArg
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> 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.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: 296 bytes
Size for each variant:
Literal
: 32 bytesPath
: 56 bytesNameValue
: 296 bytes