pub type Or1<T0> = Or<T0>;
An enum of 1 variants.
enum
1
pub enum Or1<T0> { T0(T0), }
A variant of the Or enum that contains a T0 value.
Or
T0