pub enum RebaseResult {
Success {
onto: String,
},
Conflict,
Failed(String),
}Expand description
Result of a rebase operation.
Variants§
Auto Trait Implementations§
impl Freeze for RebaseResult
impl RefUnwindSafe for RebaseResult
impl Send for RebaseResult
impl Sync for RebaseResult
impl Unpin for RebaseResult
impl UnsafeUnpin for RebaseResult
impl UnwindSafe for RebaseResult
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