Untyped

Type Alias Untyped 

Source
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),
}

Variants§

§

Left(Forward)

Left variant.

§

Right(Types)

Right variant.