pub struct TerminalSummary {
pub outcome: TerminalOutcome,
pub ended_at_ms: Option<i64>,
pub detail: Option<String>,
}Expand description
Scalar summary of a terminal run.
Fields§
§outcome: TerminalOutcome§ended_at_ms: Option<i64>Epoch milliseconds when the run ended, when the owner recorded it.
detail: Option<String>Short human-readable detail (result summary or error text). Never raw logs, reasoning text, or secrets.
Trait Implementations§
Source§impl Clone for TerminalSummary
impl Clone for TerminalSummary
Source§fn clone(&self) -> TerminalSummary
fn clone(&self) -> TerminalSummary
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 TerminalSummary
impl Debug for TerminalSummary
Source§impl<'de> Deserialize<'de> for TerminalSummary
impl<'de> Deserialize<'de> for TerminalSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TerminalSummary
Source§impl PartialEq for TerminalSummary
impl PartialEq for TerminalSummary
Source§impl Serialize for TerminalSummary
impl Serialize for TerminalSummary
impl StructuralPartialEq for TerminalSummary
Auto Trait Implementations§
impl Freeze for TerminalSummary
impl RefUnwindSafe for TerminalSummary
impl Send for TerminalSummary
impl Sync for TerminalSummary
impl Unpin for TerminalSummary
impl UnsafeUnpin for TerminalSummary
impl UnwindSafe for TerminalSummary
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