pub struct AssistantReasoningDeltaData {
pub delta_content: String,
pub reasoning_id: String,
}Expand description
Streaming reasoning delta for incremental extended thinking updates
Fields§
§delta_content: StringIncremental text chunk to append to the reasoning content
reasoning_id: StringReasoning block ID this delta belongs to, matching the corresponding assistant.reasoning event
Trait Implementations§
Source§impl Clone for AssistantReasoningDeltaData
impl Clone for AssistantReasoningDeltaData
Source§fn clone(&self) -> AssistantReasoningDeltaData
fn clone(&self) -> AssistantReasoningDeltaData
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 Debug for AssistantReasoningDeltaData
impl Debug for AssistantReasoningDeltaData
Source§impl<'de> Deserialize<'de> for AssistantReasoningDeltaData
impl<'de> Deserialize<'de> for AssistantReasoningDeltaData
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 AssistantReasoningDeltaData
impl RefUnwindSafe for AssistantReasoningDeltaData
impl Send for AssistantReasoningDeltaData
impl Sync for AssistantReasoningDeltaData
impl Unpin for AssistantReasoningDeltaData
impl UnsafeUnpin for AssistantReasoningDeltaData
impl UnwindSafe for AssistantReasoningDeltaData
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