aspartial_derive 0.0.4

Derive macros for the aspartial crate. Don't use this crate directly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub struct KeyEqualsLitStr{
    pub key: syn::Ident,
    pub equals_token: syn::Token![=],
    pub value: syn::LitStr,
}

impl syn::parse::Parse for KeyEqualsLitStr {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Self> {
        Ok(Self{
            key: input.parse()?,
            equals_token: input.parse()?,
            value: input.parse()?,
        })
    }
}