macro_rules! stringify_outputs {
    (@inner $first:ty) => { ... };
    (@inner $first:ty, $($t:ty),+) => { ... };
    ($first:ty) => { ... };
    ($($t:ty),+) => { ... };
}Expand description
Given the list of types, stringify them as a list.
macro_rules! stringify_outputs {
    (@inner $first:ty) => { ... };
    (@inner $first:ty, $($t:ty),+) => { ... };
    ($first:ty) => { ... };
    ($($t:ty),+) => { ... };
}Given the list of types, stringify them as a list.