pub struct MetaArgNameValue {
pub name: Ident,
pub eq_token: Eq,
pub value: ArgValue,
}
Expand description
Drop-in replacement for syn::MetaNameValue
used for parsing named
arguments inside attributes which name is always an proc_macro2::Ident
(and not syn::Path
) and value can be not only a literal, but of any
valid rust type.
Fields§
§name: Ident
Argument name
eq_token: Eq
Token placeholder
value: ArgValue
Argument value
Trait Implementations§
Source§impl Parse for MetaArgNameValue
impl Parse for MetaArgNameValue
fn parse(input: &ParseBuffer<'_>) -> Result<Self>
Source§impl ToTokens for MetaArgNameValue
impl ToTokens for MetaArgNameValue
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 MetaArgNameValue
impl RefUnwindSafe for MetaArgNameValue
impl !Send for MetaArgNameValue
impl !Sync for MetaArgNameValue
impl Unpin for MetaArgNameValue
impl UnwindSafe for MetaArgNameValue
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