pub struct ProjectWithStats {
pub project: Project,
pub task_count: i64,
pub tasks_by_status: HashMap<String, i64>,
}Fields§
§project: Project§task_count: i64§tasks_by_status: HashMap<String, i64>Trait Implementations§
Source§impl Debug for ProjectWithStats
impl Debug for ProjectWithStats
Auto Trait Implementations§
impl Freeze for ProjectWithStats
impl RefUnwindSafe for ProjectWithStats
impl Send for ProjectWithStats
impl Sync for ProjectWithStats
impl Unpin for ProjectWithStats
impl UnsafeUnpin for ProjectWithStats
impl UnwindSafe for ProjectWithStats
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