[][src]Macro n5::data_type_rstype_replace

macro_rules! data_type_rstype_replace {
    ($rstype:ty, @($($stack:tt)*) ($($first:tt)*) $($rest:tt)*) => { ... };
    ($rstype:ty, @($($stack:tt)*) [$($first:tt)*] $($rest:tt)*) => { ... };
    ($rstype:ty, @($($stack:tt)*) {$($first:tt)*} $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($close:tt)*) ($($top:tt)*) $($stack:tt)*) __paren $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($close:tt)*) ($($top:tt)*) $($stack:tt)*) __bracket $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($close:tt)*) ($($top:tt)*) $($stack:tt)*) __brace $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($top:tt)*) $($stack:tt)*) RsType $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($top:tt)*) $($stack:tt)*) $first:tt $($rest:tt)*) => { ... };
    ($rstype:ty, @(($($top:tt)+))) => { ... };
    ($rstype:ty, $($input:tt)+) => { ... };
}

Replace all RsType tokens with the provide type.