pub struct PhaseWorktree {
pub repo_root: PathBuf,
pub base_branch: String,
pub start_commit: String,
pub branch: String,
pub path: PathBuf,
}Fields§
§repo_root: PathBuf§base_branch: String§start_commit: String§branch: String§path: PathBufImplementations§
Source§impl PhaseWorktree
impl PhaseWorktree
pub fn finalize(&self, outcome: RunOutcome) -> Result<CleanupDecision>
Trait Implementations§
Source§impl Clone for PhaseWorktree
impl Clone for PhaseWorktree
Source§fn clone(&self) -> PhaseWorktree
fn clone(&self) -> PhaseWorktree
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PhaseWorktree
impl RefUnwindSafe for PhaseWorktree
impl Send for PhaseWorktree
impl Sync for PhaseWorktree
impl Unpin for PhaseWorktree
impl UnsafeUnpin for PhaseWorktree
impl UnwindSafe for PhaseWorktree
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