pub struct ExtractDocument {
pub source_doc_id: String,
pub body: String,
}Expand description
G11 (Slice 15) — a document sent to a BYO-LLM extraction harness via
Engine::ingest_with_extractor.
Fields§
§source_doc_id: StringStable opaque identifier for this document. Used as source_id on
ingested edges and for provenance tracking.
body: StringFull text body of the document to extract entities and relationships from.
Trait Implementations§
Source§impl Clone for ExtractDocument
impl Clone for ExtractDocument
Source§fn clone(&self) -> ExtractDocument
fn clone(&self) -> ExtractDocument
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 ExtractDocument
impl RefUnwindSafe for ExtractDocument
impl Send for ExtractDocument
impl Sync for ExtractDocument
impl Unpin for ExtractDocument
impl UnsafeUnpin for ExtractDocument
impl UnwindSafe for ExtractDocument
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