macro_rules! with_subcases {
($($(#[$meta:meta])* $vis:vis fn $name:ident () { $($body:tt)* })+) => { ... };
}Expand description
Allows you to fork function execution and run different flow paths. For usage, consult the crate documentation.
macro_rules! with_subcases {
($($(#[$meta:meta])* $vis:vis fn $name:ident () { $($body:tt)* })+) => { ... };
}Allows you to fork function execution and run different flow paths. For usage, consult the crate documentation.