(input: ParseStream)
| 280 | |
| 281 | impl Parse for Input { |
| 282 | fn parse(input: ParseStream) -> syn::Result<Self> { |
| 283 | let lt: syn::Lifetime = input.parse()?; |
| 284 | let _: syn::Token!(;) = input.parse()?; |
| 285 | let ty: syn::Type = input.parse()?; |
| 286 | Ok(Self { lt, ty }) |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | struct UnelideLifetimes(syn::Lifetime); |
no outgoing calls
no test coverage detected