pub struct AssistantMessage {Show 15 fields
pub parent_id: String,
pub time: MessageTime,
pub error: Option<Value>,
pub agent: String,
pub mode: Option<String>,
pub model_id: String,
pub provider_id: String,
pub path: MessagePath,
pub summary: Option<bool>,
pub cost: f64,
pub tokens: Tokens,
pub structured: Option<Value>,
pub variant: Option<String>,
pub finish: Option<String>,
pub extra: HashMap<String, Value>,
}Fields§
§parent_id: String§time: MessageTime§error: Option<Value>§agent: String§mode: Option<String>Deprecated in upstream, still on old rows.
model_id: String§provider_id: String§path: MessagePath§summary: Option<bool>§cost: f64§tokens: Tokens§structured: Option<Value>§variant: Option<String>§finish: Option<String>§extra: HashMap<String, Value>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