macro_rules! dispatch_all {
(
$(
#[cfg(feature = $feat:literal)]
$variant:ident => $module:ident,
)+
) => { ... };
}Expand description
Generates the AnyConnection and AnyClientEvent enums plus the per-draft
observer adapter, with one variant per enabled draft feature.