pub struct PlanEvalReport {
pub response: Expr,
pub events: Vec<PlanEvalEvent>,
}Expand description
Result of evaluating a plan: the final response expression and the trace of branch events recorded during evaluation.
Fields§
§response: ExprFinal model response, encoded as an Expr.
events: Vec<PlanEvalEvent>Ordered branch lifecycle events emitted while evaluating the plan.
Trait Implementations§
Source§impl Clone for PlanEvalReport
impl Clone for PlanEvalReport
Source§fn clone(&self) -> PlanEvalReport
fn clone(&self) -> PlanEvalReport
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 moreSource§impl Debug for PlanEvalReport
impl Debug for PlanEvalReport
Source§impl PartialEq for PlanEvalReport
impl PartialEq for PlanEvalReport
Source§fn eq(&self, other: &PlanEvalReport) -> bool
fn eq(&self, other: &PlanEvalReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlanEvalReport
Auto Trait Implementations§
impl Freeze for PlanEvalReport
impl RefUnwindSafe for PlanEvalReport
impl Send for PlanEvalReport
impl Sync for PlanEvalReport
impl Unpin for PlanEvalReport
impl UnsafeUnpin for PlanEvalReport
impl UnwindSafe for PlanEvalReport
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