pub enum WasmArtifactSubType {
    Cjs,
    Esm,
    Wasm,
    Web,
}
Expand description

WASM artifacts commonly produced for a published entity. The subtype should be passed as parameter of the entity-defined artifact type enumeration, like in the example:

Examples

use codec::{Decode, Encode};
use anagolay_support::{ArtifactType, WasmArtifactSubType};

#[derive(Encode, Decode, Clone, PartialEq, Eq)]
enum OperationArtifactType {
  Wasm(WasmArtifactSubType), Docs, Git
}
impl ArtifactType for OperationArtifactType {}
#[derive(Encode, Decode, Clone, PartialEq, Eq)]
enum WorkflowArtifactType {
  Wasm(WasmArtifactSubType), Docs, Git
}
impl ArtifactType for WorkflowArtifactType {}

let op_esm_artifact_type = OperationArtifactType::Wasm(WasmArtifactSubType::Esm);
let wf_esm_artifact_type = WorkflowArtifactType::Wasm(WasmArtifactSubType::Esm);

Variants

Cjs

CommonJS module for the direct use in the nodejs env which doesn’t have the ESM support. When Nodejs has native ESM support this should be used only for the legacy versions. Check here the Nodejs ESM status.

Esm

Native ES module, usually used with bundler software like webpack. You can use this just by including it, the wasm will be instantiated on require time. Example can be found here and official docs here. For the official NODEJS support see this doc If you want to use this with nodejs, use the bundler.

Wasm

Just a compiled WASM file without any acompanied JS or .d.ts files. You have to do all things manual.

Web

This is an ES module with manual instantiation of the wasm. It doesn’t include polyfills More info is on the wasm-pack doc website and wasm-bindgen

Example in Javascript

import init, { execute } from './op-file'
async function main() {
  await init() //initialize wasm
  const e = execute([new Uint8Array(7)], new Map())
  console.log(e.decode());
}
main().catch(console.error)

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Attempt to deserialise the value from input.

Attempt to skip the encoded value from input. Read more

Returns the fixed encoded size of the type. Read more

Deserialize this value from the given Serde deserializer. Read more

Convert self to a slice and append it to the destination.

If possible give a hint of expected size of the encoding. Read more

Convert self to an owned vector.

Convert self to a slice and then invoke the given closure with it.

Calculates the encoded size. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert from a value of T into an equivalent instance of Option<Self>. Read more

Consume self to return Some equivalent value of Option<T>. Read more

Decode Self and consume all of the given input data. Read more

Decode Self and consume all of the given input data. Read more

Decode Self with the given maximum recursion depth. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Cast reference.

Cast reference.

Cast mutable reference.

Cast mutable reference.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Return an encoding of Self prepended by given slice.

Should always be Self

Convert from a value of T into an equivalent instance of Self. Read more

Consume self to return an equivalent value of T. Read more

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The counterpart to unchecked_from.

Consume self to return an equivalent value of T.