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