pub struct RealtimeClientEventConversationItemRetrieve {
pub event_id: Option<String>,
pub item_id: String,
pub _type: String,
}
Fields§
§event_id: Option<String>
Optional client-generated ID used to identify this event.
item_id: String
The ID of the item to retrieve.
_type: String
The event type, must be conversation.item.retrieve
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RealtimeClientEventConversationItemRetrieve
impl<'de> Deserialize<'de> for RealtimeClientEventConversationItemRetrieve
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 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