pub struct ExportStats {
pub folders_created: usize,
pub bookmarks_exported: usize,
pub bookmarks_skipped: usize,
pub separators_exported: usize,
pub separators_skipped: usize,
pub indexes_written: usize,
}Expand description
Statistics from an export operation.
Fields§
§folders_created: usizeNumber of folders created.
bookmarks_exported: usizeNumber of bookmarks exported.
bookmarks_skipped: usizeNumber of bookmarks skipped (already exist).
separators_exported: usizeNumber of separators exported.
separators_skipped: usizeNumber of separators skipped (already exist).
indexes_written: usizeNumber of __index.toml files written.
Trait Implementations§
Source§impl Debug for ExportStats
impl Debug for ExportStats
Source§impl Default for ExportStats
impl Default for ExportStats
Source§fn default() -> ExportStats
fn default() -> ExportStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportStats
impl RefUnwindSafe for ExportStats
impl Send for ExportStats
impl Sync for ExportStats
impl Unpin for ExportStats
impl UnwindSafe for ExportStats
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