pub struct VerifyReport {
pub ok: bool,
pub problems: Vec<String>,
pub notes: Vec<String>,
pub manifest: Option<RunManifest>,
}Expand description
The outcome of verify_receipt: failures (empty == ok), informational notes, and
the parsed manifest (when parsing succeeded).
Fields§
§ok: boolWhether the receipt passed every check.
problems: Vec<String>Human-readable failures (empty when ok).
notes: Vec<String>Informational, non-failing notes (e.g. “peak within budget”).
manifest: Option<RunManifest>The parsed manifest, when parsing succeeded.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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