pub struct FunctionCallOutputItemParam {
pub id: FunctionCallOutputItemParam_Id,
pub call_id: String,
pub type: String,
pub output: String,
pub status: FunctionCallOutputItemParam_Status,
}Expand description
The output of a function tool call.
Fields§
§id: FunctionCallOutputItemParam_Id§call_id: StringThe unique ID of the function tool call generated by the model.
type: StringThe type of the function tool call output.
output: StringA JSON string of the output of the function tool call.
status: FunctionCallOutputItemParam_StatusTrait 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 moreAuto 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