Trait syn_error_experiment::parse::Parse[][src]

pub trait Parse: Sized {
    fn parse(input: ParseStream) -> Result<Self>;
}

Parsing interface implemented by all types that can be parsed in a default way from a token stream.

Required Methods

Implementations on Foreign Types

impl<T: Parse> Parse for Vec<T>
[src]

Implementors