Enum CompilerGeneratedFile
pub enum CompilerGeneratedFile {
None,
AssemblyFile(String),
ObjectFile(String),
}Expand description
A file path returned by the compiler driver.
Variants§
None
No file was generated.
AssemblyFile(String)
A file containing assembly code.
ObjectFile(String)
Either an object file (‘.o’) or an executable binary file.
Trait Implementations§
§impl Clone for CompilerGeneratedFile
impl Clone for CompilerGeneratedFile
§fn clone(&self) -> CompilerGeneratedFile
fn clone(&self) -> CompilerGeneratedFile
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CompilerGeneratedFile
impl RefUnwindSafe for CompilerGeneratedFile
impl Send for CompilerGeneratedFile
impl Sync for CompilerGeneratedFile
impl Unpin for CompilerGeneratedFile
impl UnwindSafe for CompilerGeneratedFile
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