pub enum SignatureToken {
    Bool,
    U8,
    U64,
    U128,
    Address,
    Signer,
    Vector(Box<SignatureToken>),
    Struct(StructHandleIndex),
    StructInstantiation(StructHandleIndexVec<SignatureToken>),
    Reference(Box<SignatureToken>),
    MutableReference(Box<SignatureToken>),
    TypeParameter(TypeParameterIndex),
}
Expand description

A SignatureToken is a type declaration for a location.

Any location in the system has a TypeSignature. A TypeSignature is also used in composed signatures.

A SignatureToken can express more types than the VM can handle safely, and correctness is enforced by the verifier.

Variants

Bool

Boolean, true or false.

U8

Unsigned integers, 8 bits length.

U64

Unsigned integers, 64 bits length.

U128

Unsigned integers, 128 bits length.

Address

Address, a 16 bytes immutable type.

Signer

Signer, a 16 bytes immutable type representing the capability to publish at an address

Vector(Box<SignatureToken>)

Vector

Struct(StructHandleIndex)

User defined type

StructInstantiation(StructHandleIndexVec<SignatureToken>)

Reference(Box<SignatureToken>)

Reference to a type.

MutableReference(Box<SignatureToken>)

Mutable reference to a type.

TypeParameter(TypeParameterIndex)

Type parameter.

Implementations

Returns the “value kind” for the SignatureToken

Returns true if the SignatureToken is any kind of reference (mutable and immutable).

Returns true if the SignatureToken is a mutable reference.

Returns true if the SignatureToken is a signer

Returns true if the SignatureToken can represent a constant (as in representable in the constants table).

Set the index to this one. Useful for random testing.

Panics if this token doesn’t contain a struct handle.

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

Returns the argument unchanged.

Calls U::from(self).

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

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.