pub struct Plan {
pub worktrees: Vec<WorktreeOutcome>,
}Expand description
The result of planning and (optionally) executing a batch push.
Unlike worktree_rebase::Plan there is no
fetches field: planning contacts no remote (see the module docs).
Fields§
§worktrees: Vec<WorktreeOutcome>One entry per selected worktree, in selection order.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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