hdk_derive 0.6.2

derive macros for the holochain hdk
Documentation
use proc_macro::TokenStream;
use proc_macro_error::abort;
use syn::parse_macro_input;
use syn::Item;
use syn::ItemStruct;

pub fn build(_attrs: TokenStream, input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as Item);
    let ident = match &input {
        Item::Struct(ItemStruct { ident, .. }) => ident,
        _ => abort!(input, "dna_properties macro can only be used on Structs"),
    };

    let output = quote::quote! {
        #[derive(Serialize, Deserialize, SerializedBytes, Debug)]
        #input

        impl TryFromDnaProperties for #ident {
            type Error = WasmError;

            fn try_from_dna_properties() -> Result<#ident, WasmError> {
                #ident::try_from(dna_info()?.modifiers.properties)
                    .map_err(|_| wasm_error!(WasmErrorInner::Guest(format!("Failed to deserialize DNA properties into {}", std::any::type_name::<#ident>()))))
            }
        }
    };
    output.into()
}