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<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 for CompilerOutputFormat
impl PartialEq 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 ==
.impl Copy for CompilerOutputFormat
impl Eq for CompilerOutputFormat
impl StructuralEq for CompilerOutputFormat
impl StructuralPartialEq for CompilerOutputFormat
Auto Trait Implementations§
impl RefUnwindSafe for CompilerOutputFormat
impl Send for CompilerOutputFormat
impl Sync for CompilerOutputFormat
impl Unpin for CompilerOutputFormat
impl UnwindSafe for CompilerOutputFormat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more