pub struct StartupReport {
pub phases: Vec<StartupPhaseReport>,
}Expand description
Aggregate report for a startup run.
Fields§
§phases: Vec<StartupPhaseReport>Phase reports in execution order.
Implementations§
Source§impl StartupReport
impl StartupReport
Sourcepub fn new(phases: Vec<StartupPhaseReport>) -> Self
pub fn new(phases: Vec<StartupPhaseReport>) -> Self
Returns a report from phase entries.
Sourcepub fn has_failures(&self) -> bool
pub fn has_failures(&self) -> bool
Returns whether any phase reported an error.
Trait Implementations§
Source§impl Clone for StartupReport
impl Clone for StartupReport
Source§fn clone(&self) -> StartupReport
fn clone(&self) -> StartupReport
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 StartupReport
impl Debug for StartupReport
Source§impl PartialEq for StartupReport
impl PartialEq for StartupReport
Source§fn eq(&self, other: &StartupReport) -> bool
fn eq(&self, other: &StartupReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StartupReport
impl StructuralPartialEq for StartupReport
Auto Trait Implementations§
impl Freeze for StartupReport
impl RefUnwindSafe for StartupReport
impl Send for StartupReport
impl Sync for StartupReport
impl Unpin for StartupReport
impl UnsafeUnpin for StartupReport
impl UnwindSafe for StartupReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.