pub enum SignatureToken {
Bool,
U8,
U64,
U128,
Address,
Signer,
Vector(Box<SignatureToken>),
Struct(StructHandleIndex),
StructInstantiation(StructHandleIndex, Vec<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(StructHandleIndex, Vec<SignatureToken>)
Reference(Box<SignatureToken>)
Reference to a type.
MutableReference(Box<SignatureToken>)
Mutable reference to a type.
TypeParameter(TypeParameterIndex)
Type parameter.
Implementations
sourceimpl SignatureToken
impl SignatureToken
sourcepub fn signature_token_kind(&self) -> SignatureTokenKind
pub fn signature_token_kind(&self) -> SignatureTokenKind
Returns the “value kind” for the SignatureToken
pub fn is_integer(&self) -> bool
sourcepub fn is_reference(&self) -> bool
pub fn is_reference(&self) -> bool
Returns true if the SignatureToken
is any kind of reference (mutable and immutable).
sourcepub fn is_mutable_reference(&self) -> bool
pub fn is_mutable_reference(&self) -> bool
Returns true if the SignatureToken
is a mutable reference.
sourcepub fn is_valid_for_constant(&self) -> bool
pub fn is_valid_for_constant(&self) -> bool
Returns true if the SignatureToken
can represent a constant (as in representable in
the constants table).
sourcepub fn debug_set_sh_idx(&mut self, sh_idx: StructHandleIndex)
pub fn debug_set_sh_idx(&mut self, sh_idx: StructHandleIndex)
Set the index to this one. Useful for random testing.
Panics if this token doesn’t contain a struct handle.
pub fn preorder_traversal(&self) -> SignatureTokenPreorderTraversalIter<'_>ⓘNotable traits for SignatureTokenPreorderTraversalIter<'a>impl<'a> Iterator for SignatureTokenPreorderTraversalIter<'a> type Item = &'a SignatureToken;
pub fn preorder_traversal_with_depth(
&self
) -> SignatureTokenPreorderTraversalIterWithDepth<'_>ⓘNotable traits for SignatureTokenPreorderTraversalIterWithDepth<'a>impl<'a> Iterator for SignatureTokenPreorderTraversalIterWithDepth<'a> type Item = (&'a SignatureToken, usize);
Trait Implementations
sourceimpl Clone for SignatureToken
impl Clone for SignatureToken
sourcefn clone(&self) -> SignatureToken
fn clone(&self) -> SignatureToken
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignatureToken
impl Debug for SignatureToken
sourceimpl Hash for SignatureToken
impl Hash for SignatureToken
sourceimpl Ord for SignatureToken
impl Ord for SignatureToken
sourceimpl PartialEq<SignatureToken> for SignatureToken
impl PartialEq<SignatureToken> for SignatureToken
sourcefn eq(&self, other: &SignatureToken) -> bool
fn eq(&self, other: &SignatureToken) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SignatureToken) -> bool
fn ne(&self, other: &SignatureToken) -> bool
This method tests for !=
.
sourceimpl PartialOrd<SignatureToken> for SignatureToken
impl PartialOrd<SignatureToken> for SignatureToken
sourcefn partial_cmp(&self, other: &SignatureToken) -> Option<Ordering>
fn partial_cmp(&self, other: &SignatureToken) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for SignatureToken
impl StructuralEq for SignatureToken
impl StructuralPartialEq for SignatureToken
Auto Trait Implementations
impl RefUnwindSafe for SignatureToken
impl Send for SignatureToken
impl Sync for SignatureToken
impl Unpin for SignatureToken
impl UnwindSafe for SignatureToken
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more