pub enum BreakingLevel {
Breaking,
Dangerous,
Additive,
Unchanged,
}Expand description
The breaking level of a change.
Variants§
Trait Implementations§
Source§impl Clone for BreakingLevel
impl Clone for BreakingLevel
Source§fn clone(&self) -> BreakingLevel
fn clone(&self) -> BreakingLevel
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 BreakingLevel
impl Debug for BreakingLevel
Source§impl<'de> Deserialize<'de> for BreakingLevel
impl<'de> Deserialize<'de> for BreakingLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for BreakingLevel
impl Display for BreakingLevel
Source§impl PartialEq for BreakingLevel
impl PartialEq for BreakingLevel
Source§impl Serialize for BreakingLevel
impl Serialize for BreakingLevel
impl Copy for BreakingLevel
impl Eq for BreakingLevel
impl StructuralPartialEq for BreakingLevel
Auto Trait Implementations§
impl Freeze for BreakingLevel
impl RefUnwindSafe for BreakingLevel
impl Send for BreakingLevel
impl Sync for BreakingLevel
impl Unpin for BreakingLevel
impl UnsafeUnpin for BreakingLevel
impl UnwindSafe for BreakingLevel
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