pub enum ChangeImpact {
Style,
Additive,
Modification,
Breaking,
Critical,
}Expand description
Impact of changes to this file
Variants§
Style
Formatting, comments, style changes
Additive
New functionality, non-breaking
Modification
Changing existing functionality
Breaking
Breaking existing functionality
Critical
Security, safety, or critical fixes
Trait Implementations§
Source§impl Clone for ChangeImpact
impl Clone for ChangeImpact
Source§fn clone(&self) -> ChangeImpact
fn clone(&self) -> ChangeImpact
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 ChangeImpact
impl Debug for ChangeImpact
Source§impl<'de> Deserialize<'de> for ChangeImpact
impl<'de> Deserialize<'de> for ChangeImpact
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
Auto Trait Implementations§
impl Freeze for ChangeImpact
impl RefUnwindSafe for ChangeImpact
impl Send for ChangeImpact
impl Sync for ChangeImpact
impl Unpin for ChangeImpact
impl UnwindSafe for ChangeImpact
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