pub struct BuildStats {
pub notes: usize,
pub folders: usize,
pub resources: usize,
pub tags: usize,
pub note_tags: usize,
pub others: usize,
pub encrypted: usize,
pub errors: usize,
pub cached: usize,
pub fetched: usize,
}Fields§
§notes: usize§folders: usize§resources: usize§others: usize§encrypted: usize§errors: usize§cached: usize命中增量缓存、免去拉取的条目数。
fetched: usize本轮实际从数据源拉取的条目数。
Trait Implementations§
Source§impl Clone for BuildStats
impl Clone for BuildStats
Source§fn clone(&self) -> BuildStats
fn clone(&self) -> BuildStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BuildStats
impl Debug for BuildStats
Source§impl Default for BuildStats
impl Default for BuildStats
Source§fn default() -> BuildStats
fn default() -> BuildStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BuildStats
impl RefUnwindSafe for BuildStats
impl Send for BuildStats
impl Sync for BuildStats
impl Unpin for BuildStats
impl UnsafeUnpin for BuildStats
impl UnwindSafe for BuildStats
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