pub struct DirtyWorktree {
pub ticket_id: String,
pub ticket_title: String,
pub branch: String,
pub path: PathBuf,
pub local_branch_exists: bool,
pub known_temp: Vec<PathBuf>,
pub other_untracked: Vec<PathBuf>,
pub modified_tracked: Vec<PathBuf>,
}Fields§
§ticket_id: String§ticket_title: String§branch: String§path: PathBuf§local_branch_exists: bool§known_temp: Vec<PathBuf>§other_untracked: Vec<PathBuf>§modified_tracked: Vec<PathBuf>Auto Trait Implementations§
impl Freeze for DirtyWorktree
impl RefUnwindSafe for DirtyWorktree
impl Send for DirtyWorktree
impl Sync for DirtyWorktree
impl Unpin for DirtyWorktree
impl UnsafeUnpin for DirtyWorktree
impl UnwindSafe for DirtyWorktree
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