pub struct AssistantReasoningData {
pub content: String,
pub reasoning_id: String,
}Expand description
Assistant reasoning content for timeline display with complete thinking text
Fields§
§content: StringThe complete extended thinking text from the model
reasoning_id: StringUnique identifier for this reasoning block
Trait Implementations§
Source§impl Clone for AssistantReasoningData
impl Clone for AssistantReasoningData
Source§fn clone(&self) -> AssistantReasoningData
fn clone(&self) -> AssistantReasoningData
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 AssistantReasoningData
impl Debug for AssistantReasoningData
Source§impl<'de> Deserialize<'de> for AssistantReasoningData
impl<'de> Deserialize<'de> for AssistantReasoningData
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 AssistantReasoningData
impl RefUnwindSafe for AssistantReasoningData
impl Send for AssistantReasoningData
impl Sync for AssistantReasoningData
impl Unpin for AssistantReasoningData
impl UnsafeUnpin for AssistantReasoningData
impl UnwindSafe for AssistantReasoningData
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