pub(crate) struct StartupReport {
pub(crate) backend: Backend,
pub(crate) iterations: u32,
pub(crate) wall_ns: Stats,
pub(crate) ok: bool,
}Expand description
Process-level startup: spawns the real cove binary and times the whole
exec-to-exit span, which is what an in-process measurement cannot see.
Fields§
§backend: Backend§iterations: u32§wall_ns: Stats§ok: boolImplementations§
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