pub enum ReviewEvent {
KnownReferences {
modified_symbol: String,
change_summary: String,
references: Vec<Reference>,
file_snippet: String,
},
InvestigateImpact {
modified_symbol: String,
change_summary: String,
diff_summary: String,
file_snippet: String,
project_files: Vec<String>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ReviewEvent
impl Clone for ReviewEvent
Source§fn clone(&self) -> ReviewEvent
fn clone(&self) -> ReviewEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReviewEvent
impl Debug for ReviewEvent
Auto Trait Implementations§
impl Freeze for ReviewEvent
impl RefUnwindSafe for ReviewEvent
impl Send for ReviewEvent
impl Sync for ReviewEvent
impl Unpin for ReviewEvent
impl UnsafeUnpin for ReviewEvent
impl UnwindSafe for ReviewEvent
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