pub struct RealtimeConversationItemFunctionCallOutput {
pub call_id: String,
pub output: String,
pub id: Option<String>,
pub object: Option<String>,
pub status: String,
}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 (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<RealtimeConversationItemFunctionCallOutput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RealtimeConversationItemFunctionCallOutput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RealtimeConversationItemFunctionCallOutput
impl Serialize for RealtimeConversationItemFunctionCallOutput
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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