pub struct LintResponse {
pub overall_score: u8,
pub severity_counts: SeverityCounts,
pub categories: CategoryScores,
}Expand description
Lint output response
Fields§
§overall_score: u8Overall design score (0-100)
severity_counts: SeverityCountsSeverity counts
categories: CategoryScoresCategory scores
Trait Implementations§
Source§impl Debug for LintResponse
impl Debug for LintResponse
Auto Trait Implementations§
impl Freeze for LintResponse
impl RefUnwindSafe for LintResponse
impl Send for LintResponse
impl Sync for LintResponse
impl Unpin for LintResponse
impl UnwindSafe for LintResponse
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