pub struct ReviewFinding {
pub id: i64,
pub agent_run_id: i64,
pub severity: String,
pub category: String,
pub file_path: Option<String>,
pub line_number: Option<u32>,
pub message: String,
pub resolved: bool,
pub dispute_reason: Option<String>,
}Expand description
A review finding from the reviewer agent.
Fields§
§id: i64§agent_run_id: i64§severity: String§category: String§file_path: Option<String>§line_number: Option<u32>§message: String§resolved: bool§dispute_reason: Option<String>Trait Implementations§
Source§impl Clone for ReviewFinding
impl Clone for ReviewFinding
Source§fn clone(&self) -> ReviewFinding
fn clone(&self) -> ReviewFinding
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 ReviewFinding
impl RefUnwindSafe for ReviewFinding
impl Send for ReviewFinding
impl Sync for ReviewFinding
impl Unpin for ReviewFinding
impl UnsafeUnpin for ReviewFinding
impl UnwindSafe for ReviewFinding
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