pub enum OperatorAction {
Show 15 variants
Abort,
Bisect,
CherryPick,
Continue,
Land,
Merge,
Ready,
Rebase,
Revert,
Sync,
ThreadCleanup,
ThreadDrop,
ThreadPromote,
ThreadRefresh,
ThreadResolve,
}Expand description
Operator action discriminator for merge reports (wire-compatible with CLI).
Variants§
Abort
Bisect
CherryPick
Continue
Land
Merge
Ready
Rebase
Revert
Sync
ThreadCleanup
ThreadDrop
ThreadPromote
ThreadRefresh
ThreadResolve
Implementations§
Source§impl OperatorAction
impl OperatorAction
pub const fn wire_value(self) -> &'static str
Trait Implementations§
Source§impl Clone for OperatorAction
impl Clone for OperatorAction
Source§fn clone(&self) -> OperatorAction
fn clone(&self) -> OperatorAction
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 moreimpl Copy for OperatorAction
Source§impl Debug for OperatorAction
impl Debug for OperatorAction
Source§impl Default for OperatorAction
impl Default for OperatorAction
Source§fn default() -> OperatorAction
fn default() -> OperatorAction
Returns the “default value” for a type. Read more
impl Eq for OperatorAction
Source§impl PartialEq for OperatorAction
impl PartialEq for OperatorAction
Source§impl Serialize for OperatorAction
impl Serialize for OperatorAction
impl StructuralPartialEq for OperatorAction
Auto Trait Implementations§
impl Freeze for OperatorAction
impl RefUnwindSafe for OperatorAction
impl Send for OperatorAction
impl Sync for OperatorAction
impl Unpin for OperatorAction
impl UnsafeUnpin for OperatorAction
impl UnwindSafe for OperatorAction
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