pub struct ExplainReport {
pub descriptor: ToolCallDescriptor,
pub adjustments: Adjustments,
pub evaluation: Evaluation,
pub decision: Decision,
pub options: ExplainOptions,
}Expand description
Everything --explain needs to render. Built by explain::explain,
passed by reference to the format functions. Captured by value so
callers can pickle reports across format selections without
rebuilding the engine state.
Fields§
§descriptor: ToolCallDescriptor§adjustments: Adjustments§evaluation: Evaluation§decision: Decision§options: ExplainOptionsImplementations§
Trait Implementations§
Source§impl Clone for ExplainReport
impl Clone for ExplainReport
Source§fn clone(&self) -> ExplainReport
fn clone(&self) -> ExplainReport
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 ExplainReport
impl RefUnwindSafe for ExplainReport
impl Send for ExplainReport
impl Sync for ExplainReport
impl Unpin for ExplainReport
impl UnsafeUnpin for ExplainReport
impl UnwindSafe for ExplainReport
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