Skip to main content

AssistantMessage

Struct AssistantMessage 

Source
pub struct AssistantMessage {
Show 25 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 aborted: Option<bool>, pub resumed_from_incomplete_thinking: Option<bool>, 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>§aborted: Option<bool>

True when this message was truncated by an interrupt/abort before the stream completed — stop_reason was never received and the content may end mid-word. Absent on normally completed messages.

§resumed_from_incomplete_thinking: Option<bool>

True when this turn continued the preceding truncated assistant turn inside its trailing signed thinking block (max-output-tokens recovery). Histories replayed through the bridge must carry the flag back so the normalizer keeps the run’s prefix on the wire.

§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

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl Debug for AssistantMessage

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for AssistantMessage

Source§

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 Serialize for AssistantMessage

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.