pub struct ExportReport {
pub updates: Vec<String>,
pub unchanged: usize,
pub skipped_no_doi: usize,
pub skipped_not_in_zotero: usize,
pub skipped_ambiguous: usize,
pub skipped_conflict: usize,
}Expand description
What one export pass did (or would do, in dry-run). Every skip reason is counted, not collapsed into a silent total.
Fields§
§updates: Vec<String>Papers whose tags were written (apply) — or would be written
(dry-run) — as title: added tags.
unchanged: usizePapers with no tags to add whose Zotero item already matches.
skipped_no_doi: usize§skipped_not_in_zotero: usize§skipped_ambiguous: usizeSeveral Zotero items share the paper’s DOI; picking one would be a guess, so all of them are left alone.
skipped_conflict: usizeVersion conflict: the Zotero item changed since the read. Never merged; the user resolves it in Zotero.
Implementations§
Trait Implementations§
Source§impl Debug for ExportReport
impl Debug for ExportReport
Source§impl Default for ExportReport
impl Default for ExportReport
Source§fn default() -> ExportReport
fn default() -> ExportReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExportReport
impl PartialEq for ExportReport
impl StructuralPartialEq for ExportReport
Auto Trait Implementations§
impl Freeze for ExportReport
impl RefUnwindSafe for ExportReport
impl Send for ExportReport
impl Sync for ExportReport
impl Unpin for ExportReport
impl UnsafeUnpin for ExportReport
impl UnwindSafe for ExportReport
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