pub struct AssistantMessage {
pub id: String,
pub msg_type: String,
pub role: AssistantRole,
pub model: Option<String>,
pub container: Option<Option<Value>>,
pub content: Vec<AssistantContentBlock>,
pub stop_reason: Option<String>,
pub stop_sequence: Option<String>,
pub stop_details: Option<Option<Value>>,
pub usage: AssistantUsage,
pub context_management: Option<Option<Value>>,
}Fields§
§id: String§msg_type: StringAlways “message”.
role: AssistantRole§model: Option<String>§container: Option<Option<Value>>null when no container; Some(None) = present as JSON null.
content: Vec<AssistantContentBlock>§stop_reason: Option<String>The API always includes this field; null means the stream is still ongoing or the field was not set.
stop_sequence: Option<String>null when stop_reason != “stop_sequence”
stop_details: Option<Option<Value>>null in most responses; some API versions emit structured details. outer None = field absent, Some(None) = field present as JSON null.
usage: AssistantUsage§context_management: Option<Option<Value>>null in most responses; Some(None) = present as JSON null.
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 · 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