pub enum ReviewKind {
Read,
AgentPreview,
AgentCoReview,
}Expand description
Reviewer roles. New variants append at the tail; the wire format stays
backwards compatible because serde emits the snake-case discriminant.
Variants§
Read
Reviewer claims to have read the change.
AgentPreview
Agent ran a preview pass — listed signals, optionally annotated.
AgentCoReview
Agent acted as co-reviewer; comments and signatures recorded.
Implementations§
Trait Implementations§
Source§impl Clone for ReviewKind
impl Clone for ReviewKind
Source§fn clone(&self) -> ReviewKind
fn clone(&self) -> ReviewKind
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 moreimpl Copy for ReviewKind
Source§impl Debug for ReviewKind
impl Debug for ReviewKind
Source§impl<'de> Deserialize<'de> for ReviewKind
impl<'de> Deserialize<'de> for ReviewKind
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
impl Eq for ReviewKind
Source§impl Hash for ReviewKind
impl Hash for ReviewKind
Source§impl PartialEq for ReviewKind
impl PartialEq for ReviewKind
Source§fn eq(&self, other: &ReviewKind) -> bool
fn eq(&self, other: &ReviewKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReviewKind
impl Serialize for ReviewKind
impl StructuralPartialEq for ReviewKind
Auto Trait Implementations§
impl Freeze for ReviewKind
impl RefUnwindSafe for ReviewKind
impl Send for ReviewKind
impl Sync for ReviewKind
impl Unpin for ReviewKind
impl UnsafeUnpin for ReviewKind
impl UnwindSafe for ReviewKind
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