Macro frunk_core::Coprod
source · macro_rules! Coprod { () => { ... }; (...$Rest:ty) => { ... }; ($A:ty) => { ... }; ($A:ty, $($tok:tt)*) => { ... }; }
Expand description
Returns a type signature for a Coproduct of the provided types
This is a type macro (introduced in Rust 1.13) that makes it easier to write nested type signatures.