pub enum DeleteUnit {
MergedLocal,
MergedRemote(Scope),
Stray,
Diverged(Scope),
MergedNonTrackingLocal,
MergedNonUpstreamRemoteTracking(Scope),
}
Variants§
MergedLocal
MergedRemote(Scope)
Stray
Diverged(Scope)
MergedNonTrackingLocal
MergedNonUpstreamRemoteTracking(Scope)
Trait Implementations§
Source§impl Clone for DeleteUnit
impl Clone for DeleteUnit
Source§fn clone(&self) -> DeleteUnit
fn clone(&self) -> DeleteUnit
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteUnit
impl Debug for DeleteUnit
Source§impl FromIterator<DeleteUnit> for DeleteFilter
impl FromIterator<DeleteUnit> for DeleteFilter
Source§fn from_iter<I>(iter: I) -> Selfwhere
I: IntoIterator<Item = DeleteUnit>,
fn from_iter<I>(iter: I) -> Selfwhere
I: IntoIterator<Item = DeleteUnit>,
Creates a value from an iterator. Read more
Source§impl Hash for DeleteUnit
impl Hash for DeleteUnit
Source§impl PartialEq for DeleteUnit
impl PartialEq for DeleteUnit
impl Eq for DeleteUnit
impl StructuralPartialEq for DeleteUnit
Auto Trait Implementations§
impl Freeze for DeleteUnit
impl RefUnwindSafe for DeleteUnit
impl Send for DeleteUnit
impl Sync for DeleteUnit
impl Unpin for DeleteUnit
impl UnwindSafe for DeleteUnit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more