geno 0.6.1

A cross-language schema compiler that generates type definitions and serialization code from a simple, declarative schema language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![format = 1,]

// Fruits
enum Enum1: i16 {
  #[default]
  none = -1,
  apple = 1,
	orange = 2,
	kiwiFruit = 3,
	pear = 4,
}