pub enum SuccessorStrategy {
PlaceholderNext,
}Expand description
Default successor-version bump strategy. None means
“operator-supplied suggestion”; the plan just echoes a placeholder.
Variants§
PlaceholderNext
Print <OLD>-next as the suggested version. Lets the operator
pick the actual bump (patch/minor/major) after reading the plan.
Trait Implementations§
Source§impl Clone for SuccessorStrategy
impl Clone for SuccessorStrategy
Source§fn clone(&self) -> SuccessorStrategy
fn clone(&self) -> SuccessorStrategy
Returns a duplicate 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 SuccessorStrategy
impl Debug for SuccessorStrategy
Source§impl PartialEq for SuccessorStrategy
impl PartialEq for SuccessorStrategy
impl Copy for SuccessorStrategy
impl Eq for SuccessorStrategy
impl StructuralPartialEq for SuccessorStrategy
Auto Trait Implementations§
impl Freeze for SuccessorStrategy
impl RefUnwindSafe for SuccessorStrategy
impl Send for SuccessorStrategy
impl Sync for SuccessorStrategy
impl Unpin for SuccessorStrategy
impl UnsafeUnpin for SuccessorStrategy
impl UnwindSafe for SuccessorStrategy
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.