pub struct ResponseContentPartDoneEvent {
pub item_id: String,
pub output_index: u64,
pub content_index: u64,
pub part: OutputContent,
}
Expand description
Emitted when a content part is done.
Fields§
§item_id: String
The ID of the output item that the content part was added to.
output_index: u64
The index of the output item that the content part was added to.
content_index: u64
The index of the content part that is done.
part: OutputContent
The content part that is done.
Implementations§
Source§impl ResponseContentPartDoneEvent
impl ResponseContentPartDoneEvent
Sourcepub fn builder() -> ResponseContentPartDoneEventBuilder<((), (), (), ())>
pub fn builder() -> ResponseContentPartDoneEventBuilder<((), (), (), ())>
Create a builder for building ResponseContentPartDoneEvent
.
On the builder, call .item_id(...)
, .output_index(...)
, .content_index(...)
, .part(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseContentPartDoneEvent
.
Trait Implementations§
Source§impl Clone for ResponseContentPartDoneEvent
impl Clone for ResponseContentPartDoneEvent
Source§fn clone(&self) -> ResponseContentPartDoneEvent
fn clone(&self) -> ResponseContentPartDoneEvent
Returns a duplicate 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 Debug for ResponseContentPartDoneEvent
impl Debug for ResponseContentPartDoneEvent
Source§impl<'de> Deserialize<'de> for ResponseContentPartDoneEvent
impl<'de> Deserialize<'de> for ResponseContentPartDoneEvent
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
Source§impl PartialEq for ResponseContentPartDoneEvent
impl PartialEq for ResponseContentPartDoneEvent
Source§fn eq(&self, other: &ResponseContentPartDoneEvent) -> bool
fn eq(&self, other: &ResponseContentPartDoneEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResponseContentPartDoneEvent
Auto 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