Lines Matching full:parse
23 /// - [Parsing] — `input.parse::<kw::whatever>()?`
31 /// [Peeking]: crate::parse::ParseBuffer::peek
32 /// [Parsing]: crate::parse::ParseBuffer::parse
50 /// use syn::parse::{Parse, ParseStream};
70 /// impl Parse for Argument {
71 /// fn parse(input: ParseStream) -> Result<Self> {
75 /// bool_token: input.parse::<kw::bool>()?,
76 /// eq_token: input.parse()?,
77 /// value: input.parse()?,
81 /// str_token: input.parse::<kw::str>()?,
82 /// eq_token: input.parse()?,
83 /// value: input.parse()?,
148 impl $crate::parse::Parse for $ident {
149 fn parse(input: $crate::parse::ParseStream) -> $crate::parse::Result<$ident> {