pub struct ResponseContentPartDoneEvent {
pub type: String,
pub item_id: String,
pub output_index: i64,
pub content_index: i64,
pub part: OutputContent,
}
Expand description
Emitted when a content part is done.
Fields§
§type: String
The type of the event.
item_id: String
The ID of the output item that the content part was added to.
output_index: i64
The index of the output item that the content part was added to.
content_index: i64
The index of the content part that is done.
part: OutputContent
The content part that is done.
Trait Implementations§
Source§impl Clone for ResponseContentPartDoneEvent
impl Clone for ResponseContentPartDoneEvent
Source§fn clone(&self) -> ResponseContentPartDoneEvent
fn clone(&self) -> ResponseContentPartDoneEvent
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 moreAuto Trait Implementations§
impl Freeze for ResponseContentPartDoneEvent
impl RefUnwindSafe for ResponseContentPartDoneEvent
impl Send for ResponseContentPartDoneEvent
impl Sync for ResponseContentPartDoneEvent
impl Unpin for ResponseContentPartDoneEvent
impl UnwindSafe for ResponseContentPartDoneEvent
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