pub struct RealtimeClientEventConversationItemRetrieve {
    pub event_id: String,
    pub type: String,
    pub item_id: String,
}Expand description
Send this event when you want to retrieve the server’s representation of a specific item in the conversation history.
Fields§
§event_id: StringOptional client-generated ID used to identify this event.
type: StringThe event type, must be conversation.item.retrieve.
item_id: StringThe ID of the item to retrieve.
Trait Implementations§
Source§impl Clone for RealtimeClientEventConversationItemRetrieve
 
impl Clone for RealtimeClientEventConversationItemRetrieve
Source§fn clone(&self) -> RealtimeClientEventConversationItemRetrieve
 
fn clone(&self) -> RealtimeClientEventConversationItemRetrieve
Returns a copy 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 Default for RealtimeClientEventConversationItemRetrieve
 
impl Default for RealtimeClientEventConversationItemRetrieve
Source§fn default() -> RealtimeClientEventConversationItemRetrieve
 
fn default() -> RealtimeClientEventConversationItemRetrieve
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeClientEventConversationItemRetrieve
impl RefUnwindSafe for RealtimeClientEventConversationItemRetrieve
impl Send for RealtimeClientEventConversationItemRetrieve
impl Sync for RealtimeClientEventConversationItemRetrieve
impl Unpin for RealtimeClientEventConversationItemRetrieve
impl UnwindSafe for RealtimeClientEventConversationItemRetrieve
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