pub struct EmbeddedGraphRagAssessment {
pub profile: String,
pub supported: bool,
pub required_ops: Vec<String>,
pub allowed_ops: Vec<String>,
pub allowed_exprs: Vec<String>,
pub missing_required_ops: Vec<String>,
pub unsupported_ops: Vec<String>,
pub unsupported_exprs: Vec<String>,
pub graph_ref_unsupported: bool,
}Fields§
§profile: String§supported: bool§required_ops: Vec<String>§allowed_ops: Vec<String>§allowed_exprs: Vec<String>§missing_required_ops: Vec<String>§unsupported_ops: Vec<String>§unsupported_exprs: Vec<String>§graph_ref_unsupported: boolImplementations§
Source§impl EmbeddedGraphRagAssessment
impl EmbeddedGraphRagAssessment
pub fn rejection_summary(&self) -> String
Trait Implementations§
Source§impl Clone for EmbeddedGraphRagAssessment
impl Clone for EmbeddedGraphRagAssessment
Source§fn clone(&self) -> EmbeddedGraphRagAssessment
fn clone(&self) -> EmbeddedGraphRagAssessment
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 EmbeddedGraphRagAssessment
impl Debug for EmbeddedGraphRagAssessment
impl Eq for EmbeddedGraphRagAssessment
impl StructuralPartialEq for EmbeddedGraphRagAssessment
Auto Trait Implementations§
impl Freeze for EmbeddedGraphRagAssessment
impl RefUnwindSafe for EmbeddedGraphRagAssessment
impl Send for EmbeddedGraphRagAssessment
impl Sync for EmbeddedGraphRagAssessment
impl Unpin for EmbeddedGraphRagAssessment
impl UnsafeUnpin for EmbeddedGraphRagAssessment
impl UnwindSafe for EmbeddedGraphRagAssessment
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