pub struct PayloadVerification {
pub root: PathBuf,
pub box_id: String,
pub version: String,
pub target_id: String,
pub entry_count: usize,
pub environment_report: EnvironmentReport,
}Expand description
The result of comparing an extracted tree against the entry list its release commits to.
Fields§
§root: PathBufThe tree that was checked.
box_id: StringBox identity, from the signed release.
version: StringBox version, from the signed release.
target_id: StringCanonical target slug.
entry_count: usizeHow many payload entries were checked.
environment_report: EnvironmentReportDiagnostic snapshot of the environment.
Trait Implementations§
Source§impl Clone for PayloadVerification
impl Clone for PayloadVerification
Source§fn clone(&self) -> PayloadVerification
fn clone(&self) -> PayloadVerification
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 moreAuto Trait Implementations§
impl Freeze for PayloadVerification
impl RefUnwindSafe for PayloadVerification
impl Send for PayloadVerification
impl Sync for PayloadVerification
impl Unpin for PayloadVerification
impl UnsafeUnpin for PayloadVerification
impl UnwindSafe for PayloadVerification
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