macro_rules! spawn_key {
    ($i:ident) => { ... };
    ($($i:ident),*) => { ... };
}
Expand description

A convenient macro for defining static SpawnKeys.

§Example

spawn_key!(FOO);
spawn_key!(BAR, BAZ);