pub struct ReasoningItem {
    pub type: String,
    pub id: String,
    pub summary: Vec<ReasoningItem_Summary>,
    pub status: String,
}Expand description
A description of the chain of thought used by a reasoning model while generating a response.
Fields§
§type: StringThe type of the object.
id: StringThe unique identifier of the reasoning content.
summary: Vec<ReasoningItem_Summary>Reasoning text contents.
status: StringThe status of the item.
Trait Implementations§
Source§impl Clone for ReasoningItem
 
impl Clone for ReasoningItem
Source§fn clone(&self) -> ReasoningItem
 
fn clone(&self) -> ReasoningItem
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ReasoningItem
impl RefUnwindSafe for ReasoningItem
impl Send for ReasoningItem
impl Sync for ReasoningItem
impl Unpin for ReasoningItem
impl UnwindSafe for ReasoningItem
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