Enum git_revision::spec::parse::delegate::SiblingBranch
source · [−]pub enum SiblingBranch {
Upstream,
Push,
}
Expand description
The kind of sibling branch to obtain.
Variants
Upstream
The upstream branch as configured in branch.<name>.remote
or branch.<name>.merge
.
Push
The upstream branch to which we would push.
Implementations
Trait Implementations
sourceimpl Clone for SiblingBranch
impl Clone for SiblingBranch
sourcefn clone(&self) -> SiblingBranch
fn clone(&self) -> SiblingBranch
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SiblingBranch
impl Debug for SiblingBranch
sourceimpl Hash for SiblingBranch
impl Hash for SiblingBranch
sourceimpl Ord for SiblingBranch
impl Ord for SiblingBranch
sourceimpl PartialEq<SiblingBranch> for SiblingBranch
impl PartialEq<SiblingBranch> for SiblingBranch
sourceimpl PartialOrd<SiblingBranch> for SiblingBranch
impl PartialOrd<SiblingBranch> for SiblingBranch
sourcefn partial_cmp(&self, other: &SiblingBranch) -> Option<Ordering>
fn partial_cmp(&self, other: &SiblingBranch) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for SiblingBranch
impl Eq for SiblingBranch
impl StructuralEq for SiblingBranch
impl StructuralPartialEq for SiblingBranch
Auto Trait Implementations
impl RefUnwindSafe for SiblingBranch
impl Send for SiblingBranch
impl Sync for SiblingBranch
impl Unpin for SiblingBranch
impl UnwindSafe for SiblingBranch
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more