hdk_derive 0.6.2

derive macros for the holochain hdk
Documentation
1
2
3
4
5
6
7
8
9
10
11
use hdk_derive::*;

#[derive(UnitEnum)]
enum Nesting {
    A(A),
    B(A),
}

struct A;

fn main() {}