pub struct BuildResult {
pub platform: Target,
pub app_path: PathBuf,
pub test_suite_path: Option<PathBuf>,
}Expand description
Result of a build operation
Fields§
§platform: TargetPlatform that was built
app_path: PathBufPath to the app artifact (APK, IPA, etc.)
test_suite_path: Option<PathBuf>Path to the test suite artifact (if applicable)
Trait Implementations§
Source§impl Clone for BuildResult
impl Clone for BuildResult
Source§fn clone(&self) -> BuildResult
fn clone(&self) -> BuildResult
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 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