Macro meta_tuple_type

Source
macro_rules! meta_tuple_type {
    () => { ... };
    (@[$prev: ty]) => { ... };
    (@[$prev: ty] #$ty: ty $(, $($tt:tt)*)?) => { ... };
    (@[$prev: ty] &mut $ty: ty $(, $($tt:tt)*)?) => { ... };
    (@[$prev: ty] &$ty: ty $(, $($tt:tt)*)?) => { ... };
    (@[$prev: ty] $ty: ty $(, $($tt:tt)*)?) => { ... };
    (#$ty: ty $(, $($tt:tt)*)?) => { ... };
    (&mut $ty: ty $(, $($tt:tt)*)?) => { ... };
    (&$ty: ty $(, $($tt:tt)*)?) => { ... };
    ($ty: ty $(, $($tt:tt)*)?) => { ... };
}
Expand description

Creates the typing of a MetaTuple.