pub struct AssistantMessage {Show 23 fields
pub message: AssistantMessageContent,
pub session_id: String,
pub uuid: Option<String>,
pub parent_tool_use_id: Option<String>,
pub request_id: Option<String>,
pub subagent_type: Option<String>,
pub task_description: Option<String>,
pub error: Option<AssistantErrorKind>,
pub supersedes: Vec<String>,
pub timestamp: Option<String>,
pub tool_use_meta: Vec<ToolUseMeta>,
pub is_meta: Option<bool>,
pub is_virtual: Option<bool>,
pub is_api_error_message: Option<bool>,
pub api_error_status: Option<u16>,
pub api_error: Option<String>,
pub error_details: Option<String>,
pub advisor_model: Option<String>,
pub attribution_agent: Option<String>,
pub attribution_skill: Option<String>,
pub attribution_plugin: Option<String>,
pub attribution_mcp_server: Option<String>,
pub attribution_mcp_tool: Option<String>,
}Expand description
Assistant message
Fields§
§message: AssistantMessageContent§session_id: String§uuid: Option<String>§parent_tool_use_id: Option<String>§request_id: Option<String>Anthropic API request id that produced this message (e.g. req_...).
subagent_type: Option<String>Subagent type, when this assistant message was produced inside a
local_agent subagent (e.g. general-purpose, Explore).
task_description: Option<String>Short description of the subagent task, present alongside subagent_type.
error: Option<AssistantErrorKind>§supersedes: Vec<String>§timestamp: Option<String>§tool_use_meta: Vec<ToolUseMeta>§is_meta: Option<bool>§is_virtual: Option<bool>§is_api_error_message: Option<bool>§api_error_status: Option<u16>§api_error: Option<String>§error_details: Option<String>§advisor_model: Option<String>§attribution_agent: Option<String>§attribution_skill: Option<String>§attribution_plugin: Option<String>§attribution_mcp_server: Option<String>§attribution_mcp_tool: Option<String>Trait Implementations§
Source§impl Clone for AssistantMessage
impl Clone for AssistantMessage
Source§fn clone(&self) -> AssistantMessage
fn clone(&self) -> AssistantMessage
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 AssistantMessage
impl Debug for AssistantMessage
Source§impl<'de> Deserialize<'de> for AssistantMessage
impl<'de> Deserialize<'de> for AssistantMessage
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 AssistantMessage
impl RefUnwindSafe for AssistantMessage
impl Send for AssistantMessage
impl Sync for AssistantMessage
impl Unpin for AssistantMessage
impl UnsafeUnpin for AssistantMessage
impl UnwindSafe for AssistantMessage
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