pub struct ImportSummary {
pub imported: Vec<Paper>,
pub skipped_duplicates: usize,
pub failed: Vec<String>,
}Expand description
Outcome of one import run. failed carries human-readable per-file errors
so one bad file never blocks the rest of the batch.
Fields§
§imported: Vec<Paper>§skipped_duplicates: usize§failed: Vec<String>Auto Trait Implementations§
impl Freeze for ImportSummary
impl RefUnwindSafe for ImportSummary
impl Send for ImportSummary
impl Sync for ImportSummary
impl Unpin for ImportSummary
impl UnsafeUnpin for ImportSummary
impl UnwindSafe for ImportSummary
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