pub struct LegacyWorktreeCleanupOutcome {
pub removed: Vec<(i64, String)>,
pub skipped_dirty: Vec<String>,
pub errors: Vec<String>,
}Expand description
Result of removing legacy track-managed JJ workspaces for a task.
Fields§
§removed: Vec<(i64, String)>§skipped_dirty: Vec<String>§errors: Vec<String>Trait Implementations§
Source§impl Clone for LegacyWorktreeCleanupOutcome
impl Clone for LegacyWorktreeCleanupOutcome
Source§fn clone(&self) -> LegacyWorktreeCleanupOutcome
fn clone(&self) -> LegacyWorktreeCleanupOutcome
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 LegacyWorktreeCleanupOutcome
impl Debug for LegacyWorktreeCleanupOutcome
Source§impl Default for LegacyWorktreeCleanupOutcome
impl Default for LegacyWorktreeCleanupOutcome
Source§fn default() -> LegacyWorktreeCleanupOutcome
fn default() -> LegacyWorktreeCleanupOutcome
Returns the “default value” for a type. Read more
impl Eq for LegacyWorktreeCleanupOutcome
Source§impl PartialEq for LegacyWorktreeCleanupOutcome
impl PartialEq for LegacyWorktreeCleanupOutcome
Source§fn eq(&self, other: &LegacyWorktreeCleanupOutcome) -> bool
fn eq(&self, other: &LegacyWorktreeCleanupOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LegacyWorktreeCleanupOutcome
Auto Trait Implementations§
impl Freeze for LegacyWorktreeCleanupOutcome
impl RefUnwindSafe for LegacyWorktreeCleanupOutcome
impl Send for LegacyWorktreeCleanupOutcome
impl Sync for LegacyWorktreeCleanupOutcome
impl Unpin for LegacyWorktreeCleanupOutcome
impl UnsafeUnpin for LegacyWorktreeCleanupOutcome
impl UnwindSafe for LegacyWorktreeCleanupOutcome
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