pub enum ReviewVerdict {
Approve,
RequestChanges(String),
Flag(String),
}Expand description
Verdict returned (or inferred) from the review agent’s output.
Variants§
Trait Implementations§
Source§impl Clone for ReviewVerdict
impl Clone for ReviewVerdict
Source§fn clone(&self) -> ReviewVerdict
fn clone(&self) -> ReviewVerdict
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 ReviewVerdict
impl Debug for ReviewVerdict
Source§impl PartialEq for ReviewVerdict
impl PartialEq for ReviewVerdict
impl StructuralPartialEq for ReviewVerdict
Auto Trait Implementations§
impl Freeze for ReviewVerdict
impl RefUnwindSafe for ReviewVerdict
impl Send for ReviewVerdict
impl Sync for ReviewVerdict
impl Unpin for ReviewVerdict
impl UnsafeUnpin for ReviewVerdict
impl UnwindSafe for ReviewVerdict
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