pub struct LiveAgyRunReport {
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: LiveAgyArtifactPaths,
}Expand description
Report from a managed live agy 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: LiveAgyArtifactPathsPaths written.
Trait Implementations§
Source§impl Clone for LiveAgyRunReport
impl Clone for LiveAgyRunReport
Source§fn clone(&self) -> LiveAgyRunReport
fn clone(&self) -> LiveAgyRunReport
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 LiveAgyRunReport
impl RefUnwindSafe for LiveAgyRunReport
impl Send for LiveAgyRunReport
impl Sync for LiveAgyRunReport
impl Unpin for LiveAgyRunReport
impl UnsafeUnpin for LiveAgyRunReport
impl UnwindSafe for LiveAgyRunReport
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