protify 0.1.4

A Rust-first protobuf framework to generate packages from rust code, with validation included
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::validators::builder_internals::*;
use protify_proc_macro::builder_state_macro;
builder_state_macro!(
	Ignore,
	WellKnown,
	Required,
	Len,
	MinLen,
	MaxLen,
	Pattern,
	Prefix,
	Suffix,
	Contains,
	In,
	NotIn,
	Const,
	ErrorMessages
);