pub struct AiConversationReasoningPart {
pub id: Option<String>,
pub type: Option<AiConversationPartType>,
pub metadata: Option<AiConversationPartMetadata>,
pub title: Option<String>,
pub body_data: Option<Value>,
pub body: Option<String>,
}Expand description
A reasoning part in an AI conversation.
Fields§
§id: Option<String>The ID of the part.
type: Option<AiConversationPartType>The type of the part.
metadata: Option<AiConversationPartMetadata>The metadata of the part.
title: Option<String>The title of the reasoning part.
body_data: Option<Value>The data of the reasoning part.
body: Option<String>The Markdown body of the reasoning part.
Trait Implementations§
Source§impl Clone for AiConversationReasoningPart
impl Clone for AiConversationReasoningPart
Source§fn clone(&self) -> AiConversationReasoningPart
fn clone(&self) -> AiConversationReasoningPart
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 AiConversationReasoningPart
impl Debug for AiConversationReasoningPart
Source§impl Default for AiConversationReasoningPart
impl Default for AiConversationReasoningPart
Source§fn default() -> AiConversationReasoningPart
fn default() -> AiConversationReasoningPart
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiConversationReasoningPartwhere
AiConversationReasoningPart: Default,
impl<'de> Deserialize<'de> for AiConversationReasoningPartwhere
AiConversationReasoningPart: Default,
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 AiConversationReasoningPart
impl RefUnwindSafe for AiConversationReasoningPart
impl Send for AiConversationReasoningPart
impl Sync for AiConversationReasoningPart
impl Unpin for AiConversationReasoningPart
impl UnsafeUnpin for AiConversationReasoningPart
impl UnwindSafe for AiConversationReasoningPart
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