pub struct RebaseResult {
pub success: bool,
pub conflicting_files: Vec<String>,
}Expand description
Result of a rebase operation
Fields§
§success: boolWhether rebase succeeded
conflicting_files: Vec<String>Files with conflicts (if any)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RebaseResult
impl RefUnwindSafe for RebaseResult
impl Send for RebaseResult
impl Sync for RebaseResult
impl Unpin 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