pub struct ResponseReasoningDeltaEvent {
pub item_id: String,
pub output_index: u64,
pub content_index: u64,
pub delta: HashMap<String, Value>,
pub sequence_number: u64,
}
Expand description
Emitted when there is a delta (partial update) to the reasoning content.
Fields§
§item_id: String
The unique identifier of the item for which reasoning is being updated.
output_index: u64
The index of the output item in the response’s output array.
content_index: u64
The index of the reasoning content part within the output item.
delta: HashMap<String, Value>
The partial update to the reasoning content.
sequence_number: u64
The sequence number of this event.
Implementations§
Source§impl ResponseReasoningDeltaEvent
impl ResponseReasoningDeltaEvent
Sourcepub fn builder() -> ResponseReasoningDeltaEventBuilder<((), (), (), (), ())>
pub fn builder() -> ResponseReasoningDeltaEventBuilder<((), (), (), (), ())>
Create a builder for building ResponseReasoningDeltaEvent
.
On the builder, call .item_id(...)
, .output_index(...)
, .content_index(...)
, .delta(...)
, .sequence_number(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseReasoningDeltaEvent
.
Trait Implementations§
Source§impl Clone for ResponseReasoningDeltaEvent
impl Clone for ResponseReasoningDeltaEvent
Source§fn clone(&self) -> ResponseReasoningDeltaEvent
fn clone(&self) -> ResponseReasoningDeltaEvent
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 ResponseReasoningDeltaEvent
impl Debug for ResponseReasoningDeltaEvent
Source§impl<'de> Deserialize<'de> for ResponseReasoningDeltaEvent
impl<'de> Deserialize<'de> for ResponseReasoningDeltaEvent
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
impl StructuralPartialEq for ResponseReasoningDeltaEvent
Auto Trait Implementations§
impl Freeze for ResponseReasoningDeltaEvent
impl RefUnwindSafe for ResponseReasoningDeltaEvent
impl Send for ResponseReasoningDeltaEvent
impl Sync for ResponseReasoningDeltaEvent
impl Unpin for ResponseReasoningDeltaEvent
impl UnwindSafe for ResponseReasoningDeltaEvent
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