Struct ergo_lib_wasm::ast::Constant[][src]

pub struct Constant(_);

Ergo constant(evaluated) values

Implementations

impl Constant[src]

pub fn decode_from_base16(base16_bytes_str: String) -> Result<Constant, JsValue>[src]

Decode from Base16-encoded ErgoTree serialized value

pub fn encode_to_base16(&self) -> String[src]

Encode as Base16-encoded ErgoTree serialized value

pub fn from_i32(v: i32) -> Constant[src]

Create from i32 value

pub fn to_i32(&self) -> Result<i32, JsValue>[src]

Extract i32 value, returning error if wrong type

pub fn from_i64(v: &I64) -> Constant[src]

Create from i64

pub fn to_i64(&self) -> Result<I64, JsValue>[src]

Extract i64 value, returning error if wrong type

pub fn from_byte_array(v: &[u8]) -> Constant[src]

Create from byte array

pub fn to_byte_array(&self) -> Result<Uint8Array, JsValue>[src]

Extract byte array, returning error if wrong type

Trait Implementations

impl Clone for Constant[src]

impl Debug for Constant[src]

impl Eq for Constant[src]

impl From<Constant> for Constant[src]

impl FromWasmAbi for Constant[src]

type Abi = u32

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for Constant[src]

type Abi = u32

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl OptionFromWasmAbi for Constant[src]

impl OptionIntoWasmAbi for Constant[src]

impl PartialEq<Constant> for Constant[src]

impl RefFromWasmAbi for Constant[src]

type Abi = u32

The wasm ABI type references to Self are recovered from.

type Anchor = Ref<'static, Constant>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl RefMutFromWasmAbi for Constant[src]

type Abi = u32

Same as RefFromWasmAbi::Abi

type Anchor = RefMut<'static, Constant>

Same as RefFromWasmAbi::Anchor

impl StructuralEq for Constant[src]

impl StructuralPartialEq for Constant[src]

impl WasmDescribe for Constant[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<F> TryExtractInto<F> for F[src]

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.

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