pub struct LiveCodexRunReport {
pub session_id: String,
pub prompt_result: String,
pub events: Vec<InterpreterOutputEvent>,
pub html: HtmlReport,
pub console_text: String,
pub sequence_text: String,
pub paths: LiveCodexArtifactPaths,
}Expand description
Report from a managed live codex run.
Fields§
§session_id: StringSession id.
prompt_result: StringPrompt RPC result JSON.
events: Vec<InterpreterOutputEvent>Interpreter events.
html: HtmlReportHTML review.
console_text: StringConsole text.
sequence_text: StringSequence summary.
paths: LiveCodexArtifactPathsPaths written.
Trait Implementations§
Source§impl Clone for LiveCodexRunReport
impl Clone for LiveCodexRunReport
Source§fn clone(&self) -> LiveCodexRunReport
fn clone(&self) -> LiveCodexRunReport
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 LiveCodexRunReport
impl RefUnwindSafe for LiveCodexRunReport
impl Send for LiveCodexRunReport
impl Sync for LiveCodexRunReport
impl Unpin for LiveCodexRunReport
impl UnsafeUnpin for LiveCodexRunReport
impl UnwindSafe for LiveCodexRunReport
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