pub enum PullRebaseResult {
Completed,
Conflict {
detail: String,
},
}Expand description
Re-exported commit/sync/diff APIs.
Result of attempting git pull --rebase.
Variants§
Trait Implementations§
Source§impl Clone for PullRebaseResult
impl Clone for PullRebaseResult
Source§fn clone(&self) -> PullRebaseResult
fn clone(&self) -> PullRebaseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PullRebaseResult
impl Debug for PullRebaseResult
impl Eq for PullRebaseResult
Source§impl PartialEq for PullRebaseResult
impl PartialEq for PullRebaseResult
Source§fn eq(&self, other: &PullRebaseResult) -> bool
fn eq(&self, other: &PullRebaseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PullRebaseResult
Auto Trait Implementations§
impl Freeze for PullRebaseResult
impl RefUnwindSafe for PullRebaseResult
impl Send for PullRebaseResult
impl Sync for PullRebaseResult
impl Unpin for PullRebaseResult
impl UnsafeUnpin for PullRebaseResult
impl UnwindSafe for PullRebaseResult
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