pub struct OutputArtifacts {
pub elf: Option<PathBuf>,
pub bin: Option<PathBuf>,
}Expand description
Build artifacts generated during the build process.
Fields§
§elf: Option<PathBuf>Path to the built ELF file.
bin: Option<PathBuf>Path to the converted binary file.
Trait Implementations§
Source§impl Clone for OutputArtifacts
impl Clone for OutputArtifacts
Source§fn clone(&self) -> OutputArtifacts
fn clone(&self) -> OutputArtifacts
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 moreSource§impl Default for OutputArtifacts
impl Default for OutputArtifacts
Source§fn default() -> OutputArtifacts
fn default() -> OutputArtifacts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutputArtifacts
impl RefUnwindSafe for OutputArtifacts
impl Send for OutputArtifacts
impl Sync for OutputArtifacts
impl Unpin for OutputArtifacts
impl UnsafeUnpin for OutputArtifacts
impl UnwindSafe for OutputArtifacts
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