pub struct ReviewCompleteEvent {
pub file_path: String,
pub issues_found: u32,
pub severity: String,
pub duration_ms: u64,
pub timestamp: String,
}Expand description
Code review completed event
Emitted when a code review completes.
Fields§
§file_path: StringFile path that was reviewed
issues_found: u32Number of issues found
severity: StringSeverity level (info, warning, error)
duration_ms: u64Duration in milliseconds
timestamp: StringTimestamp of the completion
Trait Implementations§
Source§impl Clone for ReviewCompleteEvent
impl Clone for ReviewCompleteEvent
Source§fn clone(&self) -> ReviewCompleteEvent
fn clone(&self) -> ReviewCompleteEvent
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 moreSource§impl Debug for ReviewCompleteEvent
impl Debug for ReviewCompleteEvent
Source§impl<'de> Deserialize<'de> for ReviewCompleteEvent
impl<'de> Deserialize<'de> for ReviewCompleteEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReviewCompleteEvent
impl RefUnwindSafe for ReviewCompleteEvent
impl Send for ReviewCompleteEvent
impl Sync for ReviewCompleteEvent
impl Unpin for ReviewCompleteEvent
impl UnwindSafe for ReviewCompleteEvent
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