pub struct IngestBundle {
pub query: ContextQuery,
pub provider: IngestProvider,
pub report: Vec<SegmentReport>,
}Expand description
The result of ingest_paste: a ready-to-fan-out query, the local provider
that answers it, and the classification report.
Fields§
§query: ContextQuerygoal = the intent verbatim; anchors include discovered paths;
representation_preferences prefer compact, then full.
provider: IngestProviderThe local, egress-free provider serving the pasted evidence.
report: Vec<SegmentReport>One entry per segment, in paste order.
Auto Trait Implementations§
impl Freeze for IngestBundle
impl RefUnwindSafe for IngestBundle
impl Send for IngestBundle
impl Sync for IngestBundle
impl Unpin for IngestBundle
impl UnsafeUnpin for IngestBundle
impl UnwindSafe for IngestBundle
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