pub struct SubPlan {
pub source_id: String,
pub triples: Vec<StructuredTriple>,
pub sub_query: Query,
pub confidence: f32,
}Expand description
A sub-query assigned to a specific source.
Fields§
§source_id: StringIdentifier of the target source.
triples: Vec<StructuredTriple>BGP triples assigned to this source (empty in fallback mode).
sub_query: QueryReconstructed SPARQL sub-query covering only triples.
confidence: f32Average confidence score for this sub-plan (0.0–1.0).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SubPlan
impl RefUnwindSafe for SubPlan
impl Send for SubPlan
impl Sync for SubPlan
impl Unpin for SubPlan
impl UnsafeUnpin for SubPlan
impl UnwindSafe for SubPlan
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