pub struct RealtimeConversationItemFunctionCallOutput {
pub call_id: String,
pub output: String,
pub id: Option<String>,
pub object: Option<String>,
pub status: String,
}Available on crate feature
realtime only.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 information or simply be empty.
id: Option<String>The unique ID of the item. This may be provided by the client or generated by the server.
object: Option<String>Identifier for the API object being returned - always realtime.item.
Optional when creating a new item.
status: StringThe 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 · 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 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