pub struct NightlyReport {
pub archived_count: usize,
pub journal_count: usize,
}Expand description
Result of a nightly cleanup run.
Fields§
§archived_count: usizeNumber of items archived to Done.md.
journal_count: usizeNumber of journal entries added.
Trait Implementations§
Source§impl Debug for NightlyReport
impl Debug for NightlyReport
Source§impl Default for NightlyReport
impl Default for NightlyReport
Source§fn default() -> NightlyReport
fn default() -> NightlyReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NightlyReport
impl<'de> Deserialize<'de> for NightlyReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NightlyReport
impl RefUnwindSafe for NightlyReport
impl Send for NightlyReport
impl Sync for NightlyReport
impl Unpin for NightlyReport
impl UnsafeUnpin for NightlyReport
impl UnwindSafe for NightlyReport
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