Trait proc_macro_kwargs::args::ParsedArgValue[][src]

pub trait ParsedArgValue<Id: KeywordArgId>: Sized {
    fn id(&self) -> Id;
fn parse_with_id(
        id: Id,
        id_span: Span,
        stream: ParseStream<'_>
    ) -> Result<Self>; }
Expand description

The runtime value of a parsed argument

Required methods

Return the corresponding id

Parse the argument with the specified id

Implementors