pub enum CompilerOutputFormat {
Native,
Wasm,
}
Expand description
Parses in-memory bytes as either the WebAssembly Text format, or a binary WebAssembly module Defines WasmEdge AOT compiler output binary format.
Variants§
Trait Implementations§
§impl Clone for CompilerOutputFormat
impl Clone for CompilerOutputFormat
§fn clone(&self) -> CompilerOutputFormat
fn clone(&self) -> CompilerOutputFormat
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for CompilerOutputFormat
impl Debug for CompilerOutputFormat
§impl From<i32> for CompilerOutputFormat
impl From<i32> for CompilerOutputFormat
§fn from(val: i32) -> CompilerOutputFormat
fn from(val: i32) -> CompilerOutputFormat
Converts to this type from the input type.
§impl From<u32> for CompilerOutputFormat
impl From<u32> for CompilerOutputFormat
§fn from(val: u32) -> CompilerOutputFormat
fn from(val: u32) -> CompilerOutputFormat
Converts to this type from the input type.
§impl PartialEq<CompilerOutputFormat> for CompilerOutputFormat
impl PartialEq<CompilerOutputFormat> for CompilerOutputFormat
§fn eq(&self, other: &CompilerOutputFormat) -> bool
fn eq(&self, other: &CompilerOutputFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.