union_impl 0.1.3

Implementation of the `union!` macro.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//!
//! Contains all definitions of groups (`ActionGroup`, `CommandGroup`) and `GroupDeterminer`.
//!

mod action_group;
mod command_group;
mod group_determiner;

pub use action_group::*;
pub use command_group::*;
pub use group_determiner::*;