pub enum BumpLevel {
Patch,
Minor,
Major,
}Expand description
The level of version bump to apply.
Variants§
Patch
Bug fix — increment the patch component.
Minor
New feature — increment the minor component.
Major
Breaking change — increment the major component.
Trait Implementations§
Source§impl Ord for BumpLevel
impl Ord for BumpLevel
Source§impl PartialOrd for BumpLevel
impl PartialOrd for BumpLevel
impl Copy for BumpLevel
impl Eq for BumpLevel
impl StructuralPartialEq for BumpLevel
Auto Trait Implementations§
impl Freeze for BumpLevel
impl RefUnwindSafe for BumpLevel
impl Send for BumpLevel
impl Sync for BumpLevel
impl Unpin for BumpLevel
impl UnsafeUnpin for BumpLevel
impl UnwindSafe for BumpLevel
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