pub struct CloudAiResponse {
pub provider: String,
pub model: String,
pub text: String,
pub finish_reason: String,
pub input_tokens: u32,
pub output_tokens: u32,
pub latency_ms: u64,
}Fields§
§provider: String§model: String§text: String§finish_reason: String§input_tokens: u32§output_tokens: u32§latency_ms: u64Trait Implementations§
Source§impl Clone for CloudAiResponse
impl Clone for CloudAiResponse
Source§fn clone(&self) -> CloudAiResponse
fn clone(&self) -> CloudAiResponse
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 CloudAiResponse
impl Debug for CloudAiResponse
Source§impl<'de> Deserialize<'de> for CloudAiResponse
impl<'de> Deserialize<'de> for CloudAiResponse
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 CloudAiResponse
impl RefUnwindSafe for CloudAiResponse
impl Send for CloudAiResponse
impl Sync for CloudAiResponse
impl Unpin for CloudAiResponse
impl UnsafeUnpin for CloudAiResponse
impl UnwindSafe for CloudAiResponse
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