pub struct SafeExportArtifact {
pub export_path: PathBuf,
pub manifest_path: PathBuf,
pub manifest_sha256: String,
}Expand description
Result of a successful [Engine::safe_export] call. The returned
manifest_sha256 equals the SHA-256 of the export file bytes (per
AC-039a) and matches the sha256 field written into the manifest
JSON.
Fields§
§export_path: PathBuf§manifest_path: PathBuf§manifest_sha256: StringTrait Implementations§
Source§impl Clone for SafeExportArtifact
impl Clone for SafeExportArtifact
Source§fn clone(&self) -> SafeExportArtifact
fn clone(&self) -> SafeExportArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SafeExportArtifact
impl Debug for SafeExportArtifact
impl Eq for SafeExportArtifact
Source§impl PartialEq for SafeExportArtifact
impl PartialEq for SafeExportArtifact
impl StructuralPartialEq for SafeExportArtifact
Auto Trait Implementations§
impl Freeze for SafeExportArtifact
impl RefUnwindSafe for SafeExportArtifact
impl Send for SafeExportArtifact
impl Sync for SafeExportArtifact
impl Unpin for SafeExportArtifact
impl UnsafeUnpin for SafeExportArtifact
impl UnwindSafe for SafeExportArtifact
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