type Untyped = Either<Forward, Types>;Expand description
Untyped analogue of a Conversion, recreating its type structure via Either.
Used to piggyback Parse and ParseMultiple impls to Either.
Aliased Type§
enum Untyped {
Left(Forward),
Right(Types),
}