macro_rules! delegate_gen_transcribable {
($wrapper:ident { $field:tt : $inner_ty:ty }) => { ... };
($wrapper:ident <$($gen:tt),+> { $field:tt : $inner_ty:ty } $(where $($bounds:tt)+)?) => { ... };
($wrapper:ident <const $cg_name:ident : $cg_ty:ty> { $field:tt : $inner_ty:ty } $(where $($bounds:tt)+)?) => { ... };
($wrapper:ident <$($gen:tt),+, const $cg_name:ident : $cg_ty:ty> { $field:tt : $inner_ty:ty } $(where $($bounds:tt)+)?) => { ... };
}Expand description
Should not be used directly — use [delegate_transcribable!] or
[delegate_const_transcribable!] instead.