pub struct CommentCheck {
pub ref_id: String,
pub agrees: bool,
pub ask: Ask,
pub unambiguous: bool,
pub reasoning: String,
}Expand description
The second agent’s ruling on the first one’s call.
Fields§
§ref_id: String§agrees: bool§ask: AskWhat this agent would do instead. Read only when agrees is false.
unambiguous: bool§reasoning: StringTrait Implementations§
Source§impl Clone for CommentCheck
impl Clone for CommentCheck
Source§fn clone(&self) -> CommentCheck
fn clone(&self) -> CommentCheck
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 CommentCheck
impl Debug for CommentCheck
Source§impl<'de> Deserialize<'de> for CommentCheck
impl<'de> Deserialize<'de> for CommentCheck
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 CommentCheck
impl RefUnwindSafe for CommentCheck
impl Send for CommentCheck
impl Sync for CommentCheck
impl Unpin for CommentCheck
impl UnsafeUnpin for CommentCheck
impl UnwindSafe for CommentCheck
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