pub struct TaskListSummary {
pub session_id: String,
pub path: PathBuf,
pub task_count: usize,
}Expand description
One session that has task-tool state, returned by
TasksRoot::list_sessions.
Fields§
§session_id: StringThe session id (the directory name).
path: PathBufAbsolute path of the session’s task directory.
task_count: usizeNumber of task files in the directory.
Trait Implementations§
Source§impl Clone for TaskListSummary
impl Clone for TaskListSummary
Source§fn clone(&self) -> TaskListSummary
fn clone(&self) -> TaskListSummary
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 TaskListSummary
impl Debug for TaskListSummary
Auto Trait Implementations§
impl Freeze for TaskListSummary
impl RefUnwindSafe for TaskListSummary
impl Send for TaskListSummary
impl Sync for TaskListSummary
impl Unpin for TaskListSummary
impl UnsafeUnpin for TaskListSummary
impl UnwindSafe for TaskListSummary
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