pub struct AssistantMessage {
pub role: AssistantRole,
pub content: Vec<ContentBlock>,
pub api: Api,
pub provider: String,
pub model: String,
pub usage: Usage,
pub stop_reason: StopReason,
pub error_message: Option<String>,
pub response_id: Option<String>,
pub timestamp: i64,
}Expand description
Re-export AssistantMessage from messages Assistant message returned by the model.
Fields§
§role: AssistantRoleRole discriminator (always AssistantRole::Assistant).
content: Vec<ContentBlock>Ordered content blocks (text, thinking, tool calls, images).
api: ApiAPI dialect that produced this message.
provider: StringProvider name (e.g. "anthropic", "openai").
model: StringModel identifier string.
usage: UsageToken usage statistics.
stop_reason: StopReasonWhy the model stopped generating.
error_message: Option<String>Non-fatal error message if the provider returned a partial error.
response_id: Option<String>Provider-assigned response ID.
timestamp: i64Unix-epoch milliseconds when the message was created.
Implementations§
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