pub enum Type {
    Base(BaseType),
    Reference(bool, BaseType),
}

Variants§

§

Base(BaseType)

§

Reference(bool, BaseType)

Implementations§

source§

impl Type

source

pub fn mk_bool() -> Self

source

pub fn mk_ref_bool(is_mut: bool) -> Self

source

pub fn is_bool(&self) -> bool

source

pub fn is_ref_bool(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_u8() -> Self

source

pub fn mk_ref_u8(is_mut: bool) -> Self

source

pub fn is_u8(&self) -> bool

source

pub fn is_ref_u8(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_u64() -> Self

source

pub fn mk_ref_u64(is_mut: bool) -> Self

source

pub fn is_u64(&self) -> bool

source

pub fn is_ref_u64(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_u128() -> Self

source

pub fn mk_ref_u128(is_mut: bool) -> Self

source

pub fn is_u128(&self) -> bool

source

pub fn is_ref_u128(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_num() -> Self

source

pub fn mk_ref_num(is_mut: bool) -> Self

source

pub fn is_num(&self) -> bool

source

pub fn is_ref_num(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_address() -> Self

source

pub fn mk_ref_address(is_mut: bool) -> Self

source

pub fn is_address(&self) -> bool

source

pub fn is_ref_address(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_signer() -> Self

source

pub fn mk_ref_signer(is_mut: bool) -> Self

source

pub fn is_signer(&self) -> bool

source

pub fn is_ref_signer(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_vector(elem: BaseType) -> Self

source

pub fn mk_ref_vector(elem: BaseType, is_mut: bool) -> Self

source

pub fn is_vector(&self) -> bool

source

pub fn is_ref_vector(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn get_vector_elem(&self) -> &BaseType

source

pub fn get_ref_vector_elem(&self, is_mut_opt: Option<bool>) -> &BaseType

source

pub fn into_vector_elem(self) -> BaseType

source

pub fn into_ref_vector_elem(self, is_mut_opt: Option<bool>) -> BaseType

source

pub fn is_vector_of(&self, elem: &BaseType) -> bool

source

pub fn is_ref_vector_of(&self, elem: &BaseType, is_mut_opt: Option<bool>) -> bool

source

pub fn mk_struct(inst: StructInstantiation) -> Self

source

pub fn mk_ref_struct(inst: StructInstantiation, is_mut: bool) -> Self

source

pub fn is_struct(&self) -> bool

source

pub fn is_ref_struct(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn get_struct_inst(&self) -> &StructInstantiation

source

pub fn get_ref_struct_inst( &self, is_mut_opt: Option<bool> ) -> &StructInstantiation

source

pub fn into_struct_inst(self) -> StructInstantiation

source

pub fn into_ref_struct_inst( self, is_mut_opt: Option<bool> ) -> StructInstantiation

source

pub fn is_struct_of(&self, inst: &StructInstantiation) -> bool

source

pub fn is_ref_struct_of( &self, inst: &StructInstantiation, is_mut_opt: Option<bool> ) -> bool

source

pub fn is_base(&self) -> bool

source

pub fn is_ref(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn get_base_type(&self) -> &BaseType

source

pub fn get_ref_type(&self) -> (bool, &BaseType)

source

pub fn into_base_type(self) -> BaseType

source

pub fn into_ref_type(self) -> (bool, BaseType)

source

pub fn is_base_of(&self, ty: &BaseType) -> bool

source

pub fn is_ref_of(&self, ty: &BaseType, is_mut_opt: Option<bool>) -> bool

source

pub fn is_int(&self) -> bool

source

pub fn is_ref_int(&self, is_mut_opt: Option<bool>) -> bool

source

pub fn is_compatible_for_assign(&self, other: &Type) -> bool

source

pub fn is_compatible_for_equality(&self, other: &Type) -> bool

source

pub fn is_compatible_for_arithmetic(&self, lhs: &Type, rhs: &Type) -> bool

source

pub fn is_compatible_for_bitwise(&self, lhs: &Type, rhs: &Type) -> bool

source

pub fn is_compatible_for_comparison(&self, other: &Type) -> bool

source

pub fn is_compatible_for_bitshift(&self, other: &Type) -> bool

source

pub fn is_compatible_for_constant(&self, value: &Constant) -> bool

source

pub fn is_compatible_for_abort_code(&self) -> bool

Trait Implementations§

source§

impl Clone for Type

source§

fn clone(&self) -> Type

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Type

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Type

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Ord for Type

source§

fn cmp(&self, other: &Type) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<Type> for Type

source§

fn eq(&self, other: &Type) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Type> for Type

source§

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 · source§

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 · source§

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
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

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

fn ge(&self, other: &Rhs) -> bool

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

impl Eq for Type

source§

impl StructuralEq for Type

source§

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

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

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V