pub struct ReasoningTextDeltaNotification {
pub thread_id: String,
pub turn_id: String,
pub item_id: String,
pub content_index: i64,
pub delta: String,
}Expand description
item/reasoning/textDelta notification.
Streaming delta for the agent’s verbose reasoning text (separate from the summary stream).
Fields§
§thread_id: String§turn_id: String§item_id: String§content_index: i64§delta: StringTrait Implementations§
Source§impl Clone for ReasoningTextDeltaNotification
impl Clone for ReasoningTextDeltaNotification
Source§fn clone(&self) -> ReasoningTextDeltaNotification
fn clone(&self) -> ReasoningTextDeltaNotification
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<'de> Deserialize<'de> for ReasoningTextDeltaNotification
impl<'de> Deserialize<'de> for ReasoningTextDeltaNotification
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 ReasoningTextDeltaNotification
impl RefUnwindSafe for ReasoningTextDeltaNotification
impl Send for ReasoningTextDeltaNotification
impl Sync for ReasoningTextDeltaNotification
impl Unpin for ReasoningTextDeltaNotification
impl UnsafeUnpin for ReasoningTextDeltaNotification
impl UnwindSafe for ReasoningTextDeltaNotification
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