pub struct ExplainReport {
pub version: String,
pub root_op: u32,
pub op_count: usize,
pub structural_errors: Vec<String>,
pub required_ops: Vec<String>,
pub required_exprs: Vec<String>,
pub embedded_graph_rag: EmbeddedGraphRagExplain,
pub operations: Vec<ExplainedOp>,
}Fields§
§version: String§root_op: u32§op_count: usize§structural_errors: Vec<String>§required_ops: Vec<String>§required_exprs: Vec<String>§embedded_graph_rag: EmbeddedGraphRagExplain§operations: Vec<ExplainedOp>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 · 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 ExplainReport
impl Debug for ExplainReport
Auto 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