[][src]Struct holochain_core_types::dna::wasm::DnaWasm

pub struct DnaWasm {
    pub code: Arc<Vec<u8>>,
    // some fields omitted
}

Represents web assembly code.

Fields

code: Arc<Vec<u8>>

The actual binary WebAssembly bytecode goes here.

Methods

impl DnaWasm[src]

pub fn new_invalid() -> Self[src]

Provide basic placeholder for wasm entries in dna structs, used for testing only.

impl DnaWasm[src]

pub fn from_bytes(wasm: Vec<u8>) -> Self[src]

Creates a new instance from given WASM binary

pub fn get_wasm_module(&self) -> Result<ModuleArc, HolochainError>[src]

This returns a parsed WASMi representation of the code, ready to be run in a WASMi ModuleInstance. The first call will create the module from the binary.

Trait Implementations

impl Clone for DnaWasm[src]

impl PartialEq<DnaWasm> for DnaWasm[src]

impl Debug for DnaWasm[src]

impl Hash for DnaWasm[src]

impl Serialize for DnaWasm[src]

impl<'de> Deserialize<'de> for DnaWasm[src]

Auto Trait Implementations

impl Send for DnaWasm

impl Sync for DnaWasm

impl Unpin for DnaWasm

impl UnwindSafe for DnaWasm

impl RefUnwindSafe for DnaWasm

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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