pub struct ValidationReport {
pub total_routes: usize,
pub conflicts: usize,
pub warnings: usize,
pub performance_score: u32,
pub suggestions: Vec<String>,
}
Expand description
Report generated after route validation
Fields§
§total_routes: usize
§conflicts: usize
§warnings: usize
§performance_score: u32
§suggestions: Vec<String>
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