pub struct Entry {
pub meta: &'static JigMeta,
pub depth: usize,
pub duration: Duration,
pub ok: bool,
pub error: Option<String>,
}Expand description
One recorded jig invocation.
Fields§
§meta: &'static JigMetaCompile-time metadata for the jig that ran.
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.
Implementations§
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