pub struct Entry {
pub name: &'static str,
pub depth: usize,
pub duration: Duration,
pub ok: bool,
pub error: Option<String>,
}Expand description
One recorded jig invocation.
Fields§
§name: &'static strFunction name of the jig.
depth: usizeNesting depth at the time of entry (top-level jigs are depth 0).
duration: DurationWall-clock time spent inside the jig.
ok: booltrue if the jig produced a successful outcome.
error: Option<String>Error message captured from the jig’s output, if any.
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin for Entry
impl UnwindSafe for Entry
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