pub enum ReviewCommentResolution {
Fixed,
NoChangeNeeded,
}Expand description
Agent-reported disposition for one forge review thread.
Variants§
Fixed
The agent addressed the review thread in the worktree.
NoChangeNeeded
The agent determined that no code or documentation change was needed.
Trait Implementations§
Source§impl Clone for ReviewCommentResolution
impl Clone for ReviewCommentResolution
Source§fn clone(&self) -> ReviewCommentResolution
fn clone(&self) -> ReviewCommentResolution
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 ReviewCommentResolution
Source§impl Debug for ReviewCommentResolution
impl Debug for ReviewCommentResolution
Source§impl<'de> Deserialize<'de> for ReviewCommentResolution
impl<'de> Deserialize<'de> for ReviewCommentResolution
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 ReviewCommentResolution
Source§impl JsonSchema for ReviewCommentResolution
impl JsonSchema for ReviewCommentResolution
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ReviewCommentResolution
impl PartialEq for ReviewCommentResolution
Source§impl Serialize for ReviewCommentResolution
impl Serialize for ReviewCommentResolution
impl StructuralPartialEq for ReviewCommentResolution
Auto Trait Implementations§
impl Freeze for ReviewCommentResolution
impl RefUnwindSafe for ReviewCommentResolution
impl Send for ReviewCommentResolution
impl Sync for ReviewCommentResolution
impl Unpin for ReviewCommentResolution
impl UnsafeUnpin for ReviewCommentResolution
impl UnwindSafe for ReviewCommentResolution
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