pub enum Level {
None,
Patch,
Minor,
Major,
Release,
Alpha,
Beta,
Rc,
}Expand description
Level at which the next increment will be made
Variants§
None
When no update has been detected the level is set to none
Patch
Update will be made at the patch level
Minor
Update will be made at the private level
Major
Update will be made at the major level
Release
Update is a release removing any pre-release suffixes (for future use)
Alpha
Update is to an alpha pre-release suffix (for future use)
Beta
Update is to an beta pre-release suffix (for future use)
Rc
Update is to an rc pre-release suffix (for future use)
Trait Implementations§
source§impl Ord for Level
impl Ord for Level
source§impl PartialEq<Level> for Level
impl PartialEq<Level> for Level
source§impl PartialOrd<Level> for Level
impl PartialOrd<Level> for Level
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more