pub enum CompileFormat {
Text,
Binary,
Remarks,
Codegen,
CodegenAsm,
CodegenIr,
CodegenVerbose,
CodegenNull,
Null,
}Variants§
Text
Binary
Remarks
Codegen
Prints annotated native code including IR and assembly
CodegenAsm
Prints annotated native code assembly
CodegenIr
Prints annotated native code IR
CodegenVerbose
Prints annotated native code including IR, assembly and outlined code
CodegenNull
Null
Trait Implementations§
Source§impl Clone for CompileFormat
impl Clone for CompileFormat
Source§fn clone(&self) -> CompileFormat
fn clone(&self) -> CompileFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CompileFormat
Source§impl Debug for CompileFormat
impl Debug for CompileFormat
impl Eq for CompileFormat
Source§impl PartialEq for CompileFormat
impl PartialEq for CompileFormat
Source§fn eq(&self, other: &CompileFormat) -> bool
fn eq(&self, other: &CompileFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompileFormat
Auto Trait Implementations§
impl Freeze for CompileFormat
impl RefUnwindSafe for CompileFormat
impl Send for CompileFormat
impl Sync for CompileFormat
impl Unpin for CompileFormat
impl UnsafeUnpin for CompileFormat
impl UnwindSafe for CompileFormat
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