pub struct ResponseReasoningSummaryTextDeltaEvent {
pub delta: String,
pub item_id: String,
pub output_index: i32,
pub summary_index: i32,
pub _type: String,
}Fields§
§delta: StringThe text delta that was added to the summary.
item_id: StringThe ID of the item this summary text delta is associated with.
output_index: i32The index of the output item this summary text delta is associated with.
summary_index: i32The index of the summary part within the reasoning summary.
_type: StringThe type of the event. Always response.reasoning_summary_text.delta.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ResponseReasoningSummaryTextDeltaEvent
impl<'de> Deserialize<'de> for ResponseReasoningSummaryTextDeltaEvent
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 ResponseReasoningSummaryTextDeltaEvent
impl RefUnwindSafe for ResponseReasoningSummaryTextDeltaEvent
impl Send for ResponseReasoningSummaryTextDeltaEvent
impl Sync for ResponseReasoningSummaryTextDeltaEvent
impl Unpin for ResponseReasoningSummaryTextDeltaEvent
impl UnwindSafe for ResponseReasoningSummaryTextDeltaEvent
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