pub struct BootstrapSummary {
pub results: Vec<(&'static str, VerifyResult)>,
pub outputs: Vec<StepOutput>,
}Expand description
Summary of bootstrap execution.
Fields§
§results: Vec<(&'static str, VerifyResult)>Results for each step.
outputs: Vec<StepOutput>Outputs (secrets, etc.) from steps.
Implementations§
Source§impl BootstrapSummary
impl BootstrapSummary
Sourcepub fn has_issues(&self) -> bool
pub fn has_issues(&self) -> bool
Returns true if any step had a partial or missing result for required steps.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BootstrapSummary
impl RefUnwindSafe for BootstrapSummary
impl Send for BootstrapSummary
impl Sync for BootstrapSummary
impl Unpin for BootstrapSummary
impl UnsafeUnpin for BootstrapSummary
impl UnwindSafe for BootstrapSummary
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