Enum move_binary_format::normalized::Type
source · [−]pub enum Type {
Bool,
U8,
U64,
U128,
Address,
Signer,
Struct {
address: AccountAddress,
module: Identifier,
name: Identifier,
type_arguments: Vec<Type>,
},
Vector(Box<Type>),
TypeParameter(TypeParameterIndex),
Reference(Box<Type>),
MutableReference(Box<Type>),
}
Expand description
Defines normalized representations of Move types, fields, kinds, structs, functions, and
modules. These representations are useful in situations that require require comparing
functions, resources, and types across modules. This arises in linking, compatibility checks
(e.g., “is it safe to deploy this new module without updating its dependents and/or restarting
genesis?”), defining schemas for resources stored on-chain, and (possibly in the future)
allowing module updates transactions.
A normalized version of SignatureToken
, a type expression appearing in struct or function
declarations. Unlike SignatureToken
s, normalized::Type
s from different modules can safely be
compared.
Variants
Bool
U8
U64
U128
Address
Signer
Struct
Vector(Box<Type>)
TypeParameter(TypeParameterIndex)
Reference(Box<Type>)
MutableReference(Box<Type>)
Implementations
sourceimpl Type
impl Type
sourcepub fn new(m: &CompiledModule, s: &SignatureToken) -> Self
pub fn new(m: &CompiledModule, s: &SignatureToken) -> Self
Create a normalized Type
for SignatureToken
s
in module m
.
sourcepub fn is_closed(&self) -> bool
pub fn is_closed(&self) -> bool
Return true if self
is a closed type with no free type variables
pub fn into_type_tag(self) -> Option<TypeTag>
pub fn into_struct_tag(self) -> Option<StructTag>
pub fn subst(&self, type_args: &[Type]) -> Self
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Type
impl<'de> Deserialize<'de> for Type
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Ord for Type
impl Ord for Type
sourceimpl PartialOrd<Type> for Type
impl PartialOrd<Type> for Type
sourcefn partial_cmp(&self, other: &Type) -> Option<Ordering>
fn partial_cmp(&self, other: &Type) -> 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 Type
impl StructuralEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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