pub struct LiveZaiRunReport {
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: LiveZaiArtifactPaths,
}Expand description
Report from a managed live zai run.
Fields§
§session_id: StringSynthetic session id for the headless run.
exit_code: Option<i32>Process exit code.
events: Vec<InterpreterOutputEvent>Interpreter events.
html: HtmlReportHTML review.
console_text: StringConsole text.
sequence_text: StringSequence summary.
paths: LiveZaiArtifactPathsPaths written.
Trait Implementations§
Source§impl Clone for LiveZaiRunReport
impl Clone for LiveZaiRunReport
Source§fn clone(&self) -> LiveZaiRunReport
fn clone(&self) -> LiveZaiRunReport
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 LiveZaiRunReport
impl RefUnwindSafe for LiveZaiRunReport
impl Send for LiveZaiRunReport
impl Sync for LiveZaiRunReport
impl Unpin for LiveZaiRunReport
impl UnsafeUnpin for LiveZaiRunReport
impl UnwindSafe for LiveZaiRunReport
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