pub struct BuildResult {
pub target_dir: PathBuf,
pub binary_path: PathBuf,
}Expand description
Result of a successful build operation.
Contains paths to the build outputs, used by subsequent commands
like run to execute the compiled binary.
Fields§
§target_dir: PathBufDirectory containing build artifacts (target/debug or target/release).
binary_path: PathBufPath to the compiled executable.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildResult
impl RefUnwindSafe for BuildResult
impl Send for BuildResult
impl Sync for BuildResult
impl Unpin for BuildResult
impl UnwindSafe for BuildResult
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