pub struct EnrichPipelineReport {
pub updated: usize,
pub failed: Vec<(i64, String)>,
pub skipped: usize,
}Expand description
Report from an enrichment pipeline commit.
Fields§
§updated: usizeNumber of notes successfully updated.
failed: Vec<(i64, String)>Notes that failed to update (note_id, error message).
skipped: usizeNumber of candidates that were not updated (no update buffered).
Trait Implementations§
Source§impl Clone for EnrichPipelineReport
impl Clone for EnrichPipelineReport
Source§fn clone(&self) -> EnrichPipelineReport
fn clone(&self) -> EnrichPipelineReport
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 EnrichPipelineReport
impl Debug for EnrichPipelineReport
Source§impl Default for EnrichPipelineReport
impl Default for EnrichPipelineReport
Source§fn default() -> EnrichPipelineReport
fn default() -> EnrichPipelineReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EnrichPipelineReport
impl RefUnwindSafe for EnrichPipelineReport
impl Send for EnrichPipelineReport
impl Sync for EnrichPipelineReport
impl Unpin for EnrichPipelineReport
impl UnwindSafe for EnrichPipelineReport
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