pub struct FunctionToolCallOutputResource {
pub call_id: String,
pub id: String,
pub output: String,
pub status: Option<String>,
pub _type: String,
}
Fields§
§call_id: String
The unique ID of the function tool call generated by the model.
id: String
The unique ID of the function call tool output.
output: String
A JSON string of the output of the function tool call.
status: Option<String>
The status of the item. One of in_progress
, completed
, or incomplete
. Populated when items are returned via API.
_type: String
The type of the function tool call output. Always function_call_output
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FunctionToolCallOutputResource
impl<'de> Deserialize<'de> for FunctionToolCallOutputResource
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 FunctionToolCallOutputResource
impl RefUnwindSafe for FunctionToolCallOutputResource
impl Send for FunctionToolCallOutputResource
impl Sync for FunctionToolCallOutputResource
impl Unpin for FunctionToolCallOutputResource
impl UnwindSafe for FunctionToolCallOutputResource
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