Enum pr47::syntax::ty::ConcreteType[][src]

pub enum ConcreteType<'a> {
    PrimitiveType(Token<'a>),
    GenericType(Box<ConcreteGenericType<'a>>),
    DeducedType(SourceRange),
    UserType(Identifier<'a>),
}

Variants

PrimitiveType(Token<'a>)

Tuple Fields of PrimitiveType

0: Token<'a>
GenericType(Box<ConcreteGenericType<'a>>)

Tuple Fields of GenericType

0: Box<ConcreteGenericType<'a>>
DeducedType(SourceRange)

Tuple Fields of DeducedType

0: SourceRange
UserType(Identifier<'a>)

Tuple Fields of UserType

0: Identifier<'a>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.