pub enum SemverBump {
None,
Patch,
Minor,
Major,
}Expand description
Suggested semantic version bump.
Variants§
None
No changes detected.
Patch
Only additive or cosmetic changes.
Minor
New equations, obligations, or tests added.
Major
Equations or obligations removed or semantically changed.
Trait Implementations§
Source§impl Clone for SemverBump
impl Clone for SemverBump
Source§fn clone(&self) -> SemverBump
fn clone(&self) -> SemverBump
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 SemverBump
impl Debug for SemverBump
Source§impl Display for SemverBump
Display the semver bump level as a lowercase string
impl Display for SemverBump
Display the semver bump level as a lowercase string
Source§impl PartialEq for SemverBump
impl PartialEq for SemverBump
impl Copy for SemverBump
impl Eq for SemverBump
impl StructuralPartialEq for SemverBump
Auto Trait Implementations§
impl Freeze for SemverBump
impl RefUnwindSafe for SemverBump
impl Send for SemverBump
impl Sync for SemverBump
impl Unpin for SemverBump
impl UnsafeUnpin for SemverBump
impl UnwindSafe for SemverBump
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.