We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99d1bf1 commit 0ca90a3Copy full SHA for 0ca90a3
packages/derive/src/lib.rs
@@ -22,10 +22,6 @@ impl Default for Options {
22
impl Parse for Options {
23
fn parse(input: ParseStream) -> syn::Result<Self> {
24
let mut ret = Self::default();
25
- if input.is_empty() {
26
- return Ok(ret);
27
- }
28
-
29
let attrs = Punctuated::<syn::MetaNameValue, Token![,]>::parse_terminated(input)?;
30
31
for kv in attrs {
0 commit comments