pub struct LiveClaudeRunReport {
pub session_id: String,
pub exit_code: Option<i32>,
pub events: Vec<InterpreterOutputEvent>,
pub html: HtmlReport,
pub console_text: String,
pub sequence_text: String,
pub paths: LiveClaudeArtifactPaths,
}Expand description
Report from a managed live Claude run.
Fields§
§session_id: StringClaude session id from stream init.
exit_code: Option<i32>Process exit code.
events: Vec<InterpreterOutputEvent>Interpreter events.
html: HtmlReportHTML review.
console_text: StringConsole text.
sequence_text: StringSequence summary.
paths: LiveClaudeArtifactPathsPaths written.
Trait Implementations§
Source§impl Clone for LiveClaudeRunReport
impl Clone for LiveClaudeRunReport
Source§fn clone(&self) -> LiveClaudeRunReport
fn clone(&self) -> LiveClaudeRunReport
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 moreAuto Trait Implementations§
impl Freeze for LiveClaudeRunReport
impl RefUnwindSafe for LiveClaudeRunReport
impl Send for LiveClaudeRunReport
impl Sync for LiveClaudeRunReport
impl Unpin for LiveClaudeRunReport
impl UnsafeUnpin for LiveClaudeRunReport
impl UnwindSafe for LiveClaudeRunReport
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