pub struct FunctionToolCallOutput {
pub id: Option<String>,
pub type: String,
pub call_id: String,
pub output: String,
pub status: Option<String>,
}
Expand description
The output of a function tool call.
Fields§
§id: Option<String>
The unique ID of the function tool call output.
type: String
The type of the function tool call output.
call_id: String
The unique ID of the function tool call generated by the model.
output: String
A JSON string of the output of the function tool call.
status: Option<String>
The status of the item.
Trait Implementations§
Source§impl Clone for FunctionToolCallOutput
impl Clone for FunctionToolCallOutput
Source§fn clone(&self) -> FunctionToolCallOutput
fn clone(&self) -> FunctionToolCallOutput
Returns a copy 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 FunctionToolCallOutput
impl Debug for FunctionToolCallOutput
Source§impl Default for FunctionToolCallOutput
impl Default for FunctionToolCallOutput
Source§fn default() -> FunctionToolCallOutput
fn default() -> FunctionToolCallOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FunctionToolCallOutput
impl RefUnwindSafe for FunctionToolCallOutput
impl Send for FunctionToolCallOutput
impl Sync for FunctionToolCallOutput
impl Unpin for FunctionToolCallOutput
impl UnwindSafe for FunctionToolCallOutput
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