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 moresourceimpl Debug for SiblingBranch
impl Debug for SiblingBranch
sourceimpl Hash for SiblingBranch
impl Hash for SiblingBranch
sourceimpl Ord for SiblingBranch
impl Ord for SiblingBranch
sourcefn cmp(&self, other: &SiblingBranch) -> Ordering
fn cmp(&self, other: &SiblingBranch) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<SiblingBranch> for SiblingBranch
impl PartialEq<SiblingBranch> for SiblingBranch
sourcefn eq(&self, other: &SiblingBranch) -> bool
fn eq(&self, other: &SiblingBranch) -> bool
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>
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 moreimpl 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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