pub struct RealtimeConversationItemFunctionCallOutput {
pub call_id: String,
pub output: String,
pub type_: String,
pub id: Option<String>,
pub object: Option<String>,
pub status: Option<RealtimeConversationItemFunctionCallOutputStatus>,
}Expand description
A function call output item in a Realtime conversation.
Fields§
§call_id: StringThe ID of the function call this output is for.
output: StringThe output of the function call, this is free text and can contain any
type_: StringThe type of the item. Always function_call_output.
id: Option<String>The unique ID of the item.
object: Option<String>Identifier for the API object being returned - always realtime.item.
status: Option<RealtimeConversationItemFunctionCallOutputStatus>The status of the item. Has no effect on the conversation.
Trait Implementations§
Source§impl Clone for RealtimeConversationItemFunctionCallOutput
impl Clone for RealtimeConversationItemFunctionCallOutput
Source§fn clone(&self) -> RealtimeConversationItemFunctionCallOutput
fn clone(&self) -> RealtimeConversationItemFunctionCallOutput
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<'de> Deserialize<'de> for RealtimeConversationItemFunctionCallOutput
impl<'de> Deserialize<'de> for RealtimeConversationItemFunctionCallOutput
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 RealtimeConversationItemFunctionCallOutput
impl RefUnwindSafe for RealtimeConversationItemFunctionCallOutput
impl Send for RealtimeConversationItemFunctionCallOutput
impl Sync for RealtimeConversationItemFunctionCallOutput
impl Unpin for RealtimeConversationItemFunctionCallOutput
impl UnsafeUnpin for RealtimeConversationItemFunctionCallOutput
impl UnwindSafe for RealtimeConversationItemFunctionCallOutput
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