[][src]Struct elrond_wasm::H256

pub struct H256(_);

Implementations

impl H256[src]

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

impl H256[src]

pub fn zero() -> H256[src]

Returns a new zero-initialized fixed hash.

pub fn len_bytes() -> usize[src]

Returns the size of this hash in bytes.

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

Extracts a byte slice containing the entire fixed hash.

pub fn as_bytes_mut(&mut self) -> &mut [u8][src]

Extracts a mutable byte slice containing the entire fixed hash.

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

Extracts a reference to the byte array containing the entire fixed hash.

pub fn copy_to_array(&self, target: &mut [u8; 32])[src]

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

Trait Implementations

impl AsMut<[u8]> for H256[src]

impl AsRef<[u8]> for H256[src]

impl Clone for H256[src]

impl Debug for H256[src]

impl Decode for H256[src]

impl Encode for H256[src]

impl Eq for H256[src]

impl<'a> From<&'a [u8; 32]> for H256[src]

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

Constructs a hash type from the given reference to the bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

impl<'a> From<&'a mut [u8; 32]> for H256[src]

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

Constructs a hash type from the given reference to the mutable bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

impl From<[u8; 32]> for H256[src]

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

Constructs a hash type from the given bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

impl From<H256> for [u8; 32][src]

impl Hash for H256[src]

impl PartialEq<H256> for H256[src]

impl StructuralEq for H256[src]

impl StructuralPartialEq for H256[src]

Auto Trait Implementations

impl Send for H256

impl Sync for H256

impl Unpin for H256

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, D> ArgType<D> for T where
    D: DynArgLoader<T>,
    T: Decode
[src]

impl<T> AsyncCallArg for T where
    T: Encode
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, A, BigInt, BigUint, T> EndpointResult<'a, A, BigInt, BigUint> for T where
    A: ContractHookApi<BigInt, BigUint> + ContractIOApi<BigInt, BigUint> + 'a,
    BigInt: BigIntApi<BigUint> + 'static,
    BigUint: BigUintApi + 'static,
    T: Encode
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.