pub struct LegacyWorktreeTaskReport {
pub task_id: i64,
pub task_name: String,
pub jj_slug: String,
pub flagged_todos: usize,
pub legacy_worktrees: usize,
pub worktrees_removed: usize,
pub worktrees_skipped_dirty: Vec<String>,
pub legacy_worktree_paths: Vec<String>,
}Expand description
Per-task summary for legacy worktree migration.
Fields§
§task_id: i64§task_name: String§jj_slug: String§flagged_todos: usize§legacy_worktrees: usize§worktrees_removed: usize§worktrees_skipped_dirty: Vec<String>§legacy_worktree_paths: Vec<String>Trait Implementations§
Source§impl Clone for LegacyWorktreeTaskReport
impl Clone for LegacyWorktreeTaskReport
Source§fn clone(&self) -> LegacyWorktreeTaskReport
fn clone(&self) -> LegacyWorktreeTaskReport
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 LegacyWorktreeTaskReport
impl Debug for LegacyWorktreeTaskReport
impl Eq for LegacyWorktreeTaskReport
Source§impl PartialEq for LegacyWorktreeTaskReport
impl PartialEq for LegacyWorktreeTaskReport
Source§fn eq(&self, other: &LegacyWorktreeTaskReport) -> bool
fn eq(&self, other: &LegacyWorktreeTaskReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LegacyWorktreeTaskReport
Auto Trait Implementations§
impl Freeze for LegacyWorktreeTaskReport
impl RefUnwindSafe for LegacyWorktreeTaskReport
impl Send for LegacyWorktreeTaskReport
impl Sync for LegacyWorktreeTaskReport
impl Unpin for LegacyWorktreeTaskReport
impl UnsafeUnpin for LegacyWorktreeTaskReport
impl UnwindSafe for LegacyWorktreeTaskReport
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