pub struct FunctionCallOutputItemParam {
pub call_id: String,
pub id: Option<Value>,
pub output: String,
pub status: Option<Value>,
pub _type: String,
}
Fields§
§call_id: String
The unique ID of the function tool call generated by the model.
id: Option<Value>
§output: String
A JSON string of the output of the function tool call.
status: Option<Value>
§_type: String
The type of the function tool call output. Always function_call_output
.
Trait Implementations§
Source§impl Debug for FunctionCallOutputItemParam
impl Debug for FunctionCallOutputItemParam
Source§impl<'de> Deserialize<'de> for FunctionCallOutputItemParam
impl<'de> Deserialize<'de> for FunctionCallOutputItemParam
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 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