pub struct EnrichReport {
pub updated: usize,
pub failed: usize,
pub failures: Vec<EnrichFailure>,
}Expand description
Report from a batch enrichment operation.
Fields§
§updated: usizeNumber of notes successfully updated.
failed: usizeNumber of notes that failed to update.
failures: Vec<EnrichFailure>Details about failed updates.
Trait Implementations§
Source§impl Clone for EnrichReport
impl Clone for EnrichReport
Source§fn clone(&self) -> EnrichReport
fn clone(&self) -> EnrichReport
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 EnrichReport
impl Debug for EnrichReport
Source§impl Default for EnrichReport
impl Default for EnrichReport
Source§fn default() -> EnrichReport
fn default() -> EnrichReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EnrichReport
impl RefUnwindSafe for EnrichReport
impl Send for EnrichReport
impl Sync for EnrichReport
impl Unpin for EnrichReport
impl UnwindSafe for EnrichReport
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