pub struct BuildResult {
pub output_path: PathBuf,
pub output_size: usize,
pub resolved_deps: Vec<ResolvedDependency>,
}Expand description
Result of a successful build.
Fields§
§output_path: PathBufPath to the output bytecode file.
output_size: usizeSize of the output in bytes.
resolved_deps: Vec<ResolvedDependency>List of resolved dependencies.
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