pub enum Type {
    Primitive(PrimitiveType),
    Tuple(Vec<Type>),
    Vector(Box<Type>),
    Struct(ModuleIdStructIdVec<Type>),
    TypeParameter(u16),
    Reference(boolBox<Type>),
    Fun(Vec<Type>, Box<Type>),
    TypeDomain(Box<Type>),
    ResourceDomain(ModuleIdStructIdOption<Vec<Type>>),
    Error,
    Var(u16),
}
Expand description

Represents a type.

Variants

Primitive(PrimitiveType)

Tuple(Vec<Type>)

Vector(Box<Type>)

Struct(ModuleIdStructIdVec<Type>)

TypeParameter(u16)

Reference(boolBox<Type>)

Fun(Vec<Type>, Box<Type>)

TypeDomain(Box<Type>)

ResourceDomain(ModuleIdStructIdOption<Vec<Type>>)

Error

Var(u16)

Implementations

Determines whether this is a type parameter.

Determines whether this is a reference.

Determines whether this is a mutable reference.

Determines whether this is an immutable reference.

Determines whether this type is a struct.

Determines whether this type is a vector

Determines whether this is a struct, or a vector of structs, or a reference to any of those.

Returns true if this type is a specification language only type or contains specification language only types

Returns true if this is a bool.

Returns true if this is any number type.

Returns true if this is an address or signer type.

Return true if this is an account address

Return true if this is an account address

Skip reference type.

If this is a struct type, replace the type instantiation.

If this is a struct type, return the associated struct env and type parameters.

If this is a struct type, return the associated QualifiedInstId.

Require this to be a struct, if so extracts its content.

Instantiates type parameters in this type.

Instantiate type parameters in the vector of types.

Instantiate type parameters in the slice of types.

Convert a partial assignment for type parameters into an instantiation.

Checks whether this type contains a type for which the predicate is true.

Returns true if this type is incomplete, i.e. contains any type variables.

Return true if this type contains generic types (i.e., types that can be instantiated).

Compute used modules in this type, adding them to the passed set.

Attempt to convert this type into a normalized::Type

Attempt to convert this type into a normalized::Type

Attempt to convert this type into a language_storage::StructTag

Attempt to convert this type into a language_storage::TypeTag

Create a Type from t

Get the unbound type variables in the type.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.