pub enum ArchitecturalImpact {
Minimal,
Moderate,
Significant,
Breaking,
}Expand description
Impact on system architecture.
Variants§
Minimal
Small changes, no architecture impact.
Moderate
Some architectural changes.
Significant
Major architectural changes.
Breaking
Breaking changes.
Trait Implementations§
Source§impl Clone for ArchitecturalImpact
impl Clone for ArchitecturalImpact
Source§fn clone(&self) -> ArchitecturalImpact
fn clone(&self) -> ArchitecturalImpact
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 ArchitecturalImpact
impl Debug for ArchitecturalImpact
Source§impl Default for ArchitecturalImpact
impl Default for ArchitecturalImpact
Source§fn default() -> ArchitecturalImpact
fn default() -> ArchitecturalImpact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArchitecturalImpact
impl<'de> Deserialize<'de> for ArchitecturalImpact
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 ArchitecturalImpact
impl RefUnwindSafe for ArchitecturalImpact
impl Send for ArchitecturalImpact
impl Sync for ArchitecturalImpact
impl Unpin for ArchitecturalImpact
impl UnsafeUnpin for ArchitecturalImpact
impl UnwindSafe for ArchitecturalImpact
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