pub struct FunctionCallOutputItemParam {
pub call_id: String,
pub output: FunctionCallOutput,
pub id: Option<String>,
pub status: Option<String>,
}Expand description
Output from a function call, sent back to the model.
Maps to Python SDK FunctionCallOutput input item.
Fields§
§call_id: StringThe call ID matching the function call.
output: FunctionCallOutputThe output content.
id: Option<String>Unique ID (populated when returned via API).
status: Option<String>Item status.
Trait Implementations§
Source§impl Clone for FunctionCallOutputItemParam
impl Clone for FunctionCallOutputItemParam
Source§fn clone(&self) -> FunctionCallOutputItemParam
fn clone(&self) -> FunctionCallOutputItemParam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'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
impl Eq for FunctionCallOutputItemParam
impl StructuralPartialEq for FunctionCallOutputItemParam
Auto Trait Implementations§
impl Freeze for FunctionCallOutputItemParam
impl RefUnwindSafe for FunctionCallOutputItemParam
impl Send for FunctionCallOutputItemParam
impl Sync for FunctionCallOutputItemParam
impl Unpin for FunctionCallOutputItemParam
impl UnsafeUnpin 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