pub struct ConversationEntry {Show 16 fields
pub parent_uuid: Option<String>,
pub is_sidechain: bool,
pub entry_type: String,
pub uuid: String,
pub timestamp: String,
pub session_id: Option<String>,
pub cwd: Option<String>,
pub git_branch: Option<String>,
pub version: Option<String>,
pub message: Option<Message>,
pub user_type: Option<String>,
pub request_id: Option<String>,
pub tool_use_result: Option<Value>,
pub snapshot: Option<Value>,
pub message_id: Option<String>,
pub extra: HashMap<String, Value>,
}Fields§
§parent_uuid: Option<String>§is_sidechain: bool§entry_type: String§uuid: String§timestamp: String§session_id: Option<String>§cwd: Option<String>§git_branch: Option<String>§version: Option<String>§message: Option<Message>§user_type: Option<String>§request_id: Option<String>§tool_use_result: Option<Value>§snapshot: Option<Value>§message_id: Option<String>§extra: HashMap<String, Value>Implementations§
Source§impl ConversationEntry
impl ConversationEntry
Sourcepub fn role(&self) -> Option<&MessageRole>
pub fn role(&self) -> Option<&MessageRole>
Role of the message, if present.
Sourcepub fn text(&self) -> String
pub fn text(&self) -> String
Collapsed text content of the message.
Delegates to Message::text. Returns an empty string if no message is present.
Sourcepub fn tool_uses(&self) -> Vec<ToolUseRef<'_>>
pub fn tool_uses(&self) -> Vec<ToolUseRef<'_>>
Tool use entries from the message, if any.
Sourcepub fn stop_reason(&self) -> Option<&str>
pub fn stop_reason(&self) -> Option<&str>
Stop reason, if present.
Trait Implementations§
Source§impl Clone for ConversationEntry
impl Clone for ConversationEntry
Source§fn clone(&self) -> ConversationEntry
fn clone(&self) -> ConversationEntry
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 ConversationEntry
impl Debug for ConversationEntry
Source§impl<'de> Deserialize<'de> for ConversationEntry
impl<'de> Deserialize<'de> for ConversationEntry
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 ConversationEntry
impl RefUnwindSafe for ConversationEntry
impl Send for ConversationEntry
impl Sync for ConversationEntry
impl Unpin for ConversationEntry
impl UnsafeUnpin for ConversationEntry
impl UnwindSafe for ConversationEntry
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