pub struct PackageOutput {
pub path: PathBuf,
pub receipt_digest: String,
pub merkle_root: Option<String>,
pub file_count: usize,
}Expand description
Result of building a package.
Fields§
§path: PathBufPath to the package directory.
receipt_digest: StringSHA-256 digest of the canonical receipt.json.
merkle_root: Option<String>Merkle root hex (if present).
file_count: usizeNumber of files in the package.
Auto Trait Implementations§
impl Freeze for PackageOutput
impl RefUnwindSafe for PackageOutput
impl Send for PackageOutput
impl Sync for PackageOutput
impl Unpin for PackageOutput
impl UnsafeUnpin for PackageOutput
impl UnwindSafe for PackageOutput
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