pub struct SelftestReport {
pub dispatched: KernelTier,
pub checks: Vec<SelftestCheck>,
}Expand description
A complete selftest result for the dispatched routes in this build.
Fields§
§dispatched: KernelTierCurrently selected executable route.
checks: Vec<SelftestCheck>Every binding row executed against that route.
Implementations§
Trait Implementations§
Source§impl Clone for SelftestReport
impl Clone for SelftestReport
Source§fn clone(&self) -> SelftestReport
fn clone(&self) -> SelftestReport
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 SelftestReport
impl Debug for SelftestReport
impl Eq for SelftestReport
Source§impl PartialEq for SelftestReport
impl PartialEq for SelftestReport
impl StructuralPartialEq for SelftestReport
Auto Trait Implementations§
impl Freeze for SelftestReport
impl RefUnwindSafe for SelftestReport
impl Send for SelftestReport
impl Sync for SelftestReport
impl Unpin for SelftestReport
impl UnsafeUnpin for SelftestReport
impl UnwindSafe for SelftestReport
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