pub struct AiExtractStructuredResponse {
pub answer: AiExtractResponse,
pub created_at: DateTime<Utc>,
pub completion_reason: Option<String>,
pub confidence_score: Option<HashMap<String, Value>>,
pub reference: Option<HashMap<String, Value>>,
pub ai_agent_info: Option<AiAgentInfo>,
}Fields§
§answer: AiExtractResponse§created_at: DateTime<Utc>§completion_reason: Option<String>§confidence_score: Option<HashMap<String, Value>>§reference: Option<HashMap<String, Value>>§ai_agent_info: Option<AiAgentInfo>Trait Implementations§
Source§impl Clone for AiExtractStructuredResponse
impl Clone for AiExtractStructuredResponse
Source§fn clone(&self) -> AiExtractStructuredResponse
fn clone(&self) -> AiExtractStructuredResponse
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 AiExtractStructuredResponse
impl Debug for AiExtractStructuredResponse
Source§impl Default for AiExtractStructuredResponse
impl Default for AiExtractStructuredResponse
Source§fn default() -> AiExtractStructuredResponse
fn default() -> AiExtractStructuredResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiExtractStructuredResponse
impl<'de> Deserialize<'de> for AiExtractStructuredResponse
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
impl StructuralPartialEq for AiExtractStructuredResponse
Auto Trait Implementations§
impl Freeze for AiExtractStructuredResponse
impl RefUnwindSafe for AiExtractStructuredResponse
impl Send for AiExtractStructuredResponse
impl Sync for AiExtractStructuredResponse
impl Unpin for AiExtractStructuredResponse
impl UnsafeUnpin for AiExtractStructuredResponse
impl UnwindSafe for AiExtractStructuredResponse
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