pub struct LeanWorkerBootstrapReport { /* private fields */ }Expand description
Structured result of worker bootstrap checks for one capability builder.
Implementations§
Source§impl LeanWorkerBootstrapReport
impl LeanWorkerBootstrapReport
Sourcepub fn checks(&self) -> &[LeanWorkerBootstrapCheck]
pub fn checks(&self) -> &[LeanWorkerBootstrapCheck]
All bootstrap findings.
Sourcepub fn errors(&self) -> impl Iterator<Item = &LeanWorkerBootstrapCheck>
pub fn errors(&self) -> impl Iterator<Item = &LeanWorkerBootstrapCheck>
Blocking bootstrap findings.
Sourcepub fn first_error(&self) -> Option<&LeanWorkerBootstrapCheck>
pub fn first_error(&self) -> Option<&LeanWorkerBootstrapCheck>
First blocking finding, if any.
Trait Implementations§
Source§impl Clone for LeanWorkerBootstrapReport
impl Clone for LeanWorkerBootstrapReport
Source§fn clone(&self) -> LeanWorkerBootstrapReport
fn clone(&self) -> LeanWorkerBootstrapReport
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 LeanWorkerBootstrapReport
impl Debug for LeanWorkerBootstrapReport
Source§impl PartialEq for LeanWorkerBootstrapReport
impl PartialEq for LeanWorkerBootstrapReport
Source§fn eq(&self, other: &LeanWorkerBootstrapReport) -> bool
fn eq(&self, other: &LeanWorkerBootstrapReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeanWorkerBootstrapReport
impl StructuralPartialEq for LeanWorkerBootstrapReport
Auto Trait Implementations§
impl Freeze for LeanWorkerBootstrapReport
impl RefUnwindSafe for LeanWorkerBootstrapReport
impl Send for LeanWorkerBootstrapReport
impl Sync for LeanWorkerBootstrapReport
impl Unpin for LeanWorkerBootstrapReport
impl UnsafeUnpin for LeanWorkerBootstrapReport
impl UnwindSafe for LeanWorkerBootstrapReport
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