pub struct ReasoningPartDelta {
    pub text: Option<String>,
    pub signature: Option<String>,
    pub id: Option<String>,
}Fields§
§text: Option<String>The reasoning text content.
signature: Option<String>The reasoning internal signature
id: Option<String>The ID of the reasoning part, if applicable
Implementations§
Trait Implementations§
Source§impl Clone for ReasoningPartDelta
 
impl Clone for ReasoningPartDelta
Source§fn clone(&self) -> ReasoningPartDelta
 
fn clone(&self) -> ReasoningPartDelta
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 ReasoningPartDelta
 
impl Debug for ReasoningPartDelta
Source§impl Default for ReasoningPartDelta
 
impl Default for ReasoningPartDelta
Source§fn default() -> ReasoningPartDelta
 
fn default() -> ReasoningPartDelta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReasoningPartDelta
 
impl<'de> Deserialize<'de> for ReasoningPartDelta
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
Source§impl PartialEq for ReasoningPartDelta
 
impl PartialEq for ReasoningPartDelta
Source§impl Serialize for ReasoningPartDelta
 
impl Serialize for ReasoningPartDelta
impl StructuralPartialEq for ReasoningPartDelta
Auto Trait Implementations§
impl Freeze for ReasoningPartDelta
impl RefUnwindSafe for ReasoningPartDelta
impl Send for ReasoningPartDelta
impl Sync for ReasoningPartDelta
impl Unpin for ReasoningPartDelta
impl UnwindSafe for ReasoningPartDelta
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