type DefaultedParam = Either<TypeParam, ConstParam>;
enum DefaultedParam { Left(TypeParam), Right(ConstParam), }
A value of type L.
L
A value of type R.
R