Macro decode_bits

Source
macro_rules! decode_bits {
    ($bits:ident, {}) => { ... };
    ($bits:ident, {$jet:path}) => { ... };
    ($bits:ident, { 0 => $false_branch:tt, 1 => $true_branch:tt }) => { ... };
}