pub struct ReviewSummary {
pub summary: String,
pub unresolved_count: usize,
pub blocking_count: usize,
pub detailed_breakdown: Option<String>,
pub samples: Vec<String>,
}Expand description
Review metrics summary for display.
Fields§
§summary: StringOne-line summary of review results
unresolved_count: usizeNumber of unresolved issues
blocking_count: usizeNumber of unresolved blocking issues
detailed_breakdown: Option<String>Optional detailed breakdown (for verbose mode)
samples: Vec<String>Optional sample unresolved issues (for verbose mode)
Auto Trait Implementations§
impl Freeze for ReviewSummary
impl RefUnwindSafe for ReviewSummary
impl Send for ReviewSummary
impl Sync for ReviewSummary
impl Unpin for ReviewSummary
impl UnwindSafe for ReviewSummary
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more