pub struct DashboardOptions {
pub project: Option<String>,
pub activity_days: u32,
pub stale_limit: u32,
pub stale_threshold: f64,
}Expand description
Options for building a dashboard report.
Fields§
§project: Option<String>Scope to a single project (by ID or folder name). None = vault-wide.
activity_days: u32Number of days of activity history to include (default: 30).
stale_limit: u32Maximum stale notes to include (default: 10).
stale_threshold: f64Minimum staleness score to flag (default: 0.5).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DashboardOptions
impl RefUnwindSafe for DashboardOptions
impl Send for DashboardOptions
impl Sync for DashboardOptions
impl Unpin for DashboardOptions
impl UnsafeUnpin for DashboardOptions
impl UnwindSafe for DashboardOptions
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more