pub enum MergeStatus {
Preparing,
Unchecked,
Checking,
CanBeMerged,
CannotBeMerged,
CannotBeMergedRecheck,
CannotBeMergedRechecking,
}👎Deprecated since 0.1705.1: stable hook APIs are not feasible
Expand description
The status of the possible merge for a merge request.
Variants§
Preparing
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request has just been created.
Unchecked
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request has not been checked yet.
Checking
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request is currently being checked.
CanBeMerged
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request may be merged.
CannotBeMerged
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request may not be merged yet.
CannotBeMergedRecheck
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request has not been checked but previously could not be merged.
CannotBeMergedRechecking
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request could not be merged previously, but is being rechecked.
Trait Implementations§
Source§impl Clone for MergeStatus
impl Clone for MergeStatus
Source§fn clone(&self) -> MergeStatus
fn clone(&self) -> MergeStatus
Returns a copy of the value. Read more
1.0.0 · 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 MergeStatus
impl Debug for MergeStatus
Source§impl<'de> Deserialize<'de> for MergeStatus
impl<'de> Deserialize<'de> for MergeStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MergeStatus
impl PartialEq for MergeStatus
impl Copy for MergeStatus
impl Eq for MergeStatus
impl StructuralPartialEq for MergeStatus
Auto Trait Implementations§
impl Freeze for MergeStatus
impl RefUnwindSafe for MergeStatus
impl Send for MergeStatus
impl Sync for MergeStatus
impl Unpin for MergeStatus
impl UnwindSafe for MergeStatus
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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