pub enum AddCheckout {
CheckoutExisting {
target_branch: Option<BranchName>,
},
NewBranch {
name: BranchName,
target_branch: Option<BranchName>,
},
}Variants§
Auto Trait Implementations§
impl Freeze for AddCheckout
impl RefUnwindSafe for AddCheckout
impl Send for AddCheckout
impl Sync for AddCheckout
impl Unpin for AddCheckout
impl UnsafeUnpin for AddCheckout
impl UnwindSafe for AddCheckout
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