Macro backend

Source
macro_rules! backend {
    ($fn:ident!($($args:tt)*)) => { ... };
    ($fn:ident SYNC!($($args:tt)*)) => { ... };
    ($fn:ident($($args:tt)*)) => { ... };
    (! $fn:ident($($args:tt)*)) => { ... };
    ($b:ident => {$($lsp:tt)*}{$($global:tt)*}) => { ... };
}
Available on crate feature ssr only.