pub struct PipelineReport {
pub entity_count: usize,
pub relationship_count: usize,
pub chunks_processed: usize,
pub document_count: usize,
pub approach: String,
pub elapsed_ms: u128,
}Expand description
Report produced after a pipeline run
Fields§
§entity_count: usizeNumber of entities extracted
relationship_count: usizeNumber of relationships built
chunks_processed: usizeNumber of text chunks processed
document_count: usizeNumber of documents loaded
approach: StringPipeline approach used (“semantic”, “algorithmic”, “hybrid”)
elapsed_ms: u128Total elapsed time in milliseconds
Trait Implementations§
Source§impl Clone for PipelineReport
impl Clone for PipelineReport
Source§fn clone(&self) -> PipelineReport
fn clone(&self) -> PipelineReport
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 PipelineReport
impl Debug for PipelineReport
Auto Trait Implementations§
impl Freeze for PipelineReport
impl RefUnwindSafe for PipelineReport
impl Send for PipelineReport
impl Sync for PipelineReport
impl Unpin for PipelineReport
impl UnsafeUnpin for PipelineReport
impl UnwindSafe for PipelineReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more