pub struct RunTerminalReport {
pub run_id: RunId,
pub status: RunTerminalStatus,
pub witnesses: Vec<InteractionTerminalReport>,
}Expand description
Terminal-status report for a run.
Fields§
§run_id: RunId§status: RunTerminalStatus§witnesses: Vec<InteractionTerminalReport>Inputs whose seed.last_run_id references the run, in admission order.
Trait Implementations§
Source§impl Clone for RunTerminalReport
impl Clone for RunTerminalReport
Source§fn clone(&self) -> RunTerminalReport
fn clone(&self) -> RunTerminalReport
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 RunTerminalReport
impl Debug for RunTerminalReport
Source§impl PartialEq for RunTerminalReport
impl PartialEq for RunTerminalReport
impl StructuralPartialEq for RunTerminalReport
Auto Trait Implementations§
impl Freeze for RunTerminalReport
impl RefUnwindSafe for RunTerminalReport
impl Send for RunTerminalReport
impl Sync for RunTerminalReport
impl Unpin for RunTerminalReport
impl UnsafeUnpin for RunTerminalReport
impl UnwindSafe for RunTerminalReport
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