pub struct DashboardStats {
pub tasks_by_status: HashMap<String, i64>,
pub total_tasks: i64,
pub active_agents: i64,
pub total_projects: i64,
pub recent_activity: Vec<TaskActivity>,
}Fields§
§tasks_by_status: HashMap<String, i64>§total_tasks: i64§active_agents: i64§total_projects: i64§recent_activity: Vec<TaskActivity>Trait Implementations§
Source§impl Debug for DashboardStats
impl Debug for DashboardStats
Auto Trait Implementations§
impl Freeze for DashboardStats
impl RefUnwindSafe for DashboardStats
impl Send for DashboardStats
impl Sync for DashboardStats
impl Unpin for DashboardStats
impl UnsafeUnpin for DashboardStats
impl UnwindSafe for DashboardStats
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