pub struct ValidationReport {
pub is_valid: bool,
pub service_count: usize,
pub dependency_count: usize,
pub resolution_order: Vec<ServiceId>,
pub errors: Vec<ValidationError>,
pub warnings: Vec<ValidationWarning>,
}
Expand description
Validation report containing results and recommendations
Fields§
§is_valid: bool
§service_count: usize
§dependency_count: usize
§resolution_order: Vec<ServiceId>
§errors: Vec<ValidationError>
§warnings: Vec<ValidationWarning>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnwindSafe for ValidationReport
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