pub enum ValidationIssue {
TooManyDependencies {
service: String,
count: usize,
recommended_max: usize,
},
DeepDependencyChain {
service: String,
depth: usize,
recommended_max: usize,
},
PerformanceConcern {
service: String,
issue: String,
suggestion: String,
},
ConventionViolation {
service: String,
expected: String,
actual: String,
},
}
Expand description
Validation issue types
Variants§
TooManyDependencies
Service has too many dependencies
DeepDependencyChain
Deep dependency chain
PerformanceConcern
Potential performance concern
ConventionViolation
Convention violation
Trait Implementations§
Source§impl Clone for ValidationIssue
impl Clone for ValidationIssue
Source§fn clone(&self) -> ValidationIssue
fn clone(&self) -> ValidationIssue
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 moreAuto Trait Implementations§
impl Freeze for ValidationIssue
impl RefUnwindSafe for ValidationIssue
impl Send for ValidationIssue
impl Sync for ValidationIssue
impl Unpin for ValidationIssue
impl UnwindSafe for ValidationIssue
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