Skip to main content

TypeRef

Type Alias TypeRef 

Source
pub type TypeRef = TypeSpec;
Expand description

Type-Referenz im Service-Modell. In Foundation-Stufe ist das nur ein Re-Use des AST-TypeSpec — Phase C6.1.B kann hier ein resolviertes Type-Objekt einsetzen.

Aliased Type§

pub enum TypeRef {
    Primitive(PrimitiveType),
    Scoped(ScopedName),
    Sequence(SequenceType),
    String(StringType),
    Fixed(FixedPtType),
    Map(MapType),
    Any,
}

Variants§

§

Primitive(PrimitiveType)

§

Scoped(ScopedName)

§

Sequence(SequenceType)

§

String(StringType)

§

Fixed(FixedPtType)

§

Map(MapType)

§

Any