pub enum FunctionCallOutputBody {
Text(String),
Items(Vec<FunctionCallOutputContentItem>),
}Expand description
A tool call’s output body: either a plain string or Responses-API compatible content items (0.148 upstream).
Variants§
Text(String)
Items(Vec<FunctionCallOutputContentItem>)
Trait Implementations§
Source§impl Clone for FunctionCallOutputBody
impl Clone for FunctionCallOutputBody
Source§fn clone(&self) -> FunctionCallOutputBody
fn clone(&self) -> FunctionCallOutputBody
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 FunctionCallOutputBody
impl Debug for FunctionCallOutputBody
Source§impl<'de> Deserialize<'de> for FunctionCallOutputBody
impl<'de> Deserialize<'de> for FunctionCallOutputBody
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
Source§impl PartialEq for FunctionCallOutputBody
impl PartialEq for FunctionCallOutputBody
Source§impl Serialize for FunctionCallOutputBody
impl Serialize for FunctionCallOutputBody
impl StructuralPartialEq for FunctionCallOutputBody
Auto Trait Implementations§
impl Freeze for FunctionCallOutputBody
impl RefUnwindSafe for FunctionCallOutputBody
impl Send for FunctionCallOutputBody
impl Sync for FunctionCallOutputBody
impl Unpin for FunctionCallOutputBody
impl UnsafeUnpin for FunctionCallOutputBody
impl UnwindSafe for FunctionCallOutputBody
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