pub struct HumanReviewContext {
pub run_id: String,
pub agent_id: String,
pub step_index: usize,
pub messages: Vec<Message>,
pub response: ModelResponse,
pub context: Value,
}Fields§
§run_id: String§agent_id: String§step_index: usize§messages: Vec<Message>§response: ModelResponse§context: ValueTrait Implementations§
Source§impl Clone for HumanReviewContext
impl Clone for HumanReviewContext
Source§fn clone(&self) -> HumanReviewContext
fn clone(&self) -> HumanReviewContext
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 moreAuto Trait Implementations§
impl Freeze for HumanReviewContext
impl RefUnwindSafe for HumanReviewContext
impl Send for HumanReviewContext
impl Sync for HumanReviewContext
impl Unpin for HumanReviewContext
impl UnsafeUnpin for HumanReviewContext
impl UnwindSafe for HumanReviewContext
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