penum 0.1.30

Make enum conform to a given pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use self::blueprint::Blueprint;
pub use self::blueprint::BlueprintsMap;
pub use self::sig::VariantSig;

mod blueprint;
mod ret;
mod shm;
mod sig;
mod standard;

/// Storing token streams will cause "use after free" error, so we store them as Strings instead.
pub static T_SHM: self::shm::SharedMemory<String, String> = self::shm::SharedMemory::new();