Struct multiversx_chain_vm::types::VMAddress

source ·
pub struct VMAddress(/* private fields */);
Expand description

Address type being used in the VM only.

Its implementation is similar to that of the heap Address in the framework, but we have a separate implementation for the VM, because it is a separate component.

Implementations§

source§

impl VMAddress

source

pub const fn new(bytes: [u8; 32]) -> Self

source

pub fn generate_mock_address(creator_address: &[u8], creator_nonce: u64) -> Self

source§

impl VMAddress

source

pub fn from_slice(slice: &[u8]) -> Self

source§

impl VMAddress

source

pub fn zero() -> Self

Returns a new address of 32 zeros. Allocates directly in heap. Minimal resulting wasm code (14 bytes if not inlined).

source

pub fn as_bytes(&self) -> &[u8]

Extracts a byte slice containing the entire fixed hash.

source

pub fn as_array(&self) -> &[u8; 32]

source

pub fn to_vec(&self) -> Vec<u8>

source

pub fn is_smart_contract_address(&self) -> bool

Trait Implementations§

source§

impl AsMut<[u8]> for VMAddress

source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[u8]> for VMAddress

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for VMAddress

source§

fn clone(&self) -> VMAddress

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 VMAddress

source§

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

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

impl From<&[u8; 32]> for VMAddress

source§

fn from(bytes: &[u8; 32]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a VMAddress> for &'a H256

source§

fn from(address: &'a VMAddress) -> Self

Converts to this type from the input type.
source§

impl From<&mut [u8; 32]> for VMAddress

source§

fn from(bytes: &mut [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 32]> for VMAddress

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<Box<[u8; 32]>> for VMAddress

source§

fn from(bytes: Box<[u8; 32]>) -> Self

Converts to this type from the input type.
source§

impl From<H256> for VMAddress

source§

fn from(hash: H256) -> Self

Converts to this type from the input type.
source§

impl From<VMAddress> for [u8; 32]

source§

fn from(addr: VMAddress) -> Self

Converts to this type from the input type.
source§

impl From<VMAddress> for H256

source§

fn from(address: VMAddress) -> Self

Converts to this type from the input type.
source§

impl Hash for VMAddress

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

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

impl PartialEq for VMAddress

source§

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

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

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

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

impl Eq for VMAddress

source§

impl StructuralPartialEq for VMAddress

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToHex for T
where T: AsRef<[u8]>,

source§

fn encode_hex<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Lower case letters are used (e.g. f9b4ca)
source§

fn encode_hex_upper<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Upper case letters are used (e.g. F9B4CA)
source§

impl<T> ToOwned for T
where T: Clone,

source§

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, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

source§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.