pub struct WorktreeCreation {
pub path: PathBuf,
pub branch_created: bool,
}Expand description
Creates a git worktree for the given branch.
The worktree is placed in the parent directory of repo_root, named using
worktree_dir_name. Returns the path to the created worktree.
Result of creating a worktree, including whether the branch was newly created.
Fields§
§path: PathBufPath to the created worktree directory.
branch_created: boolWhether git-paw created the branch (true) or it already existed (false).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WorktreeCreation
impl RefUnwindSafe for WorktreeCreation
impl Send for WorktreeCreation
impl Sync for WorktreeCreation
impl Unpin for WorktreeCreation
impl UnsafeUnpin for WorktreeCreation
impl UnwindSafe for WorktreeCreation
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more