pub struct CallResponse {
pub content: String,
pub model: String,
pub provider: String,
pub usage: LlmUsage,
pub success: bool,
pub error: Option<String>,
pub thinking_content: Option<String>,
pub cache_hit: Option<CacheHitTier>,
pub tool_calls: Option<Vec<Value>>,
}Fields§
§content: String§model: String§provider: String§usage: LlmUsage§success: bool§error: Option<String>§thinking_content: Option<String>§cache_hit: Option<CacheHitTier>§tool_calls: Option<Vec<Value>>Trait Implementations§
Source§impl Clone for CallResponse
impl Clone for CallResponse
Source§fn clone(&self) -> CallResponse
fn clone(&self) -> CallResponse
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 CallResponse
impl Debug for CallResponse
Source§impl<'de> Deserialize<'de> for CallResponse
impl<'de> Deserialize<'de> for CallResponse
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
Source§impl PartialEq for CallResponse
impl PartialEq for CallResponse
Source§fn eq(&self, other: &CallResponse) -> bool
fn eq(&self, other: &CallResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallResponse
impl Serialize for CallResponse
impl StructuralPartialEq for CallResponse
Auto Trait Implementations§
impl Freeze for CallResponse
impl RefUnwindSafe for CallResponse
impl Send for CallResponse
impl Sync for CallResponse
impl Unpin for CallResponse
impl UnsafeUnpin for CallResponse
impl UnwindSafe for CallResponse
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