pub struct LlmCallRow {Show 21 fields
pub id: String,
pub session_id: Option<String>,
pub conversation_id: Option<String>,
pub start_timestamp_ms: u64,
pub end_timestamp_ms: Option<u64>,
pub pid: Option<u32>,
pub comm: Option<String>,
pub provider: Option<String>,
pub model: Option<String>,
pub call_kind: Option<String>,
pub status: String,
pub error_type: Option<String>,
pub finish_reason: Option<String>,
pub host: Option<String>,
pub path: Option<String>,
pub status_code: Option<u16>,
pub input_tokens: i64,
pub output_tokens: i64,
pub total_tokens: i64,
pub request: Value,
pub response: Value,
}Fields§
§id: String§session_id: Option<String>§conversation_id: Option<String>§start_timestamp_ms: u64§end_timestamp_ms: Option<u64>§pid: Option<u32>§comm: Option<String>§provider: Option<String>§model: Option<String>§call_kind: Option<String>§status: String§error_type: Option<String>§finish_reason: Option<String>§host: Option<String>§path: Option<String>§status_code: Option<u16>§input_tokens: i64§output_tokens: i64§total_tokens: i64§request: Value§response: ValueTrait Implementations§
Source§impl Clone for LlmCallRow
impl Clone for LlmCallRow
Source§fn clone(&self) -> LlmCallRow
fn clone(&self) -> LlmCallRow
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 LlmCallRow
impl Debug for LlmCallRow
Source§impl<'de> Deserialize<'de> for LlmCallRow
impl<'de> Deserialize<'de> for LlmCallRow
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 LlmCallRow
impl RefUnwindSafe for LlmCallRow
impl Send for LlmCallRow
impl Sync for LlmCallRow
impl Unpin for LlmCallRow
impl UnsafeUnpin for LlmCallRow
impl UnwindSafe for LlmCallRow
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