pub struct ResponseOutputItemEvent {
pub event_id: String,
pub response_id: String,
pub output_index: u32,
pub item: ResponseItem,
}Expand description
Response output item event.
Fields§
§event_id: String§response_id: String§output_index: u32§item: ResponseItemTrait Implementations§
Source§impl Clone for ResponseOutputItemEvent
impl Clone for ResponseOutputItemEvent
Source§fn clone(&self) -> ResponseOutputItemEvent
fn clone(&self) -> ResponseOutputItemEvent
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 Debug for ResponseOutputItemEvent
impl Debug for ResponseOutputItemEvent
Source§impl<'de> Deserialize<'de> for ResponseOutputItemEvent
impl<'de> Deserialize<'de> for ResponseOutputItemEvent
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 ResponseOutputItemEvent
impl RefUnwindSafe for ResponseOutputItemEvent
impl Send for ResponseOutputItemEvent
impl Sync for ResponseOutputItemEvent
impl Unpin for ResponseOutputItemEvent
impl UnsafeUnpin for ResponseOutputItemEvent
impl UnwindSafe for ResponseOutputItemEvent
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