pub enum CompilerOutputFormat {
Native,
Wasm,
}
Expand description
Defines WasmEdge AOT compiler output binary format.
Variants§
Trait Implementations§
source§impl Clone for CompilerOutputFormat
impl Clone for CompilerOutputFormat
source§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 moresource§impl Debug for CompilerOutputFormat
impl Debug for CompilerOutputFormat
source§impl From<CompilerOutputFormat> for i32
impl From<CompilerOutputFormat> for i32
source§fn from(val: CompilerOutputFormat) -> i32
fn from(val: CompilerOutputFormat) -> i32
Converts to this type from the input type.
source§impl From<CompilerOutputFormat> for u32
impl From<CompilerOutputFormat> for u32
source§fn from(val: CompilerOutputFormat) -> u32
fn from(val: CompilerOutputFormat) -> u32
Converts to this type from the input type.
source§impl From<i32> for CompilerOutputFormat
impl From<i32> for CompilerOutputFormat
source§fn from(val: i32) -> CompilerOutputFormat
fn from(val: i32) -> CompilerOutputFormat
Converts to this type from the input type.
source§impl From<u32> for CompilerOutputFormat
impl From<u32> for CompilerOutputFormat
source§fn from(val: u32) -> CompilerOutputFormat
fn from(val: u32) -> CompilerOutputFormat
Converts to this type from the input type.
source§impl PartialEq<CompilerOutputFormat> for CompilerOutputFormat
impl PartialEq<CompilerOutputFormat> for CompilerOutputFormat
source§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 ==
.