nnn-macros 1.0.1

Generate your newtypes from a single macro.
Documentation
/* Dependencies */
use syn::parse::{Parse, ParseStream};

/// Either
/// custom = `path::to::fn`
/// custom = |input: Type| { ...; return .. }
/// custom = { instructions; }
pub(crate) enum CustomFunction {
    /// Path to the function to run of signature
    /// Fn(mut Inner) -> Inner
    /// mut being optional
    Path(syn::Path),
    /// Closure of type
    /// Fn(mut Inner) -> Inner
    /// mut being optional
    Closure(syn::ExprClosure),
    /// Depends on `value` being the input value to sanitize.
    /// Block can be `{ value.sort(); }` or `{ value = value....; }`
    Block(syn::Block),
}

impl Parse for CustomFunction {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let closure = if let Ok(path) = input.parse::<syn::Path>() {
            Self::Path(path)
        } else if let Ok(closure) = input.parse::<syn::ExprClosure>() {
            Self::Closure(closure)
        } else if let Ok(block) = input.parse::<syn::Block>() {
            Self::Block(block)
        } else {
            return Err(syn::Error::new(
                input.span(),
                "Invalid `custom` argument input.",
            ));
        };

        if !input.peek(syn::Token![,]) && !input.is_empty() {
            return Err(input.error("Unexpected token(s)."));
        }

        Ok(closure)
    }
}