pub struct FunctionToolCallOutputResource {
pub id: String,
pub type: String,
pub call_id: String,
pub output: String,
pub status: Option<String>,
}
Fields§
§id: String
The unique ID of the function call tool 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 FunctionToolCallOutputResource
impl Clone for FunctionToolCallOutputResource
Source§fn clone(&self) -> FunctionToolCallOutputResource
fn clone(&self) -> FunctionToolCallOutputResource
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 Default for FunctionToolCallOutputResource
impl Default for FunctionToolCallOutputResource
Source§fn default() -> FunctionToolCallOutputResource
fn default() -> FunctionToolCallOutputResource
Returns the “default value” for a type. 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