pub struct ToolResponsePayload {
pub function_responses: Vec<FunctionResponse>,
}Expand description
Payload for tool response.
Fields§
§function_responses: Vec<FunctionResponse>Function call responses to return to the model.
Trait Implementations§
Source§impl Clone for ToolResponsePayload
impl Clone for ToolResponsePayload
Source§fn clone(&self) -> ToolResponsePayload
fn clone(&self) -> ToolResponsePayload
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 ToolResponsePayload
impl Debug for ToolResponsePayload
Auto Trait Implementations§
impl Freeze for ToolResponsePayload
impl RefUnwindSafe for ToolResponsePayload
impl Send for ToolResponsePayload
impl Sync for ToolResponsePayload
impl Unpin for ToolResponsePayload
impl UnwindSafe for ToolResponsePayload
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