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