pub struct AnalyzeDocumentResponse {
pub analyze_document_model_version: Option<String>,
pub blocks: Option<Vec<Block>>,
pub document_metadata: Option<DocumentMetadata>,
pub human_loop_activation_output: Option<HumanLoopActivationOutput>,
}Fields§
§analyze_document_model_version: Option<String>The version of the model used to analyze the document.
blocks: Option<Vec<Block>>The items that are detected and analyzed by AnalyzeDocument.
document_metadata: Option<DocumentMetadata>Metadata about the analyzed document. An example is the number of pages.
human_loop_activation_output: Option<HumanLoopActivationOutput>Shows the results of the human in the loop evaluation.
Trait Implementations§
Source§impl Clone for AnalyzeDocumentResponse
impl Clone for AnalyzeDocumentResponse
Source§fn clone(&self) -> AnalyzeDocumentResponse
fn clone(&self) -> AnalyzeDocumentResponse
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 AnalyzeDocumentResponse
impl Debug for AnalyzeDocumentResponse
Source§impl Default for AnalyzeDocumentResponse
impl Default for AnalyzeDocumentResponse
Source§fn default() -> AnalyzeDocumentResponse
fn default() -> AnalyzeDocumentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeDocumentResponse
impl<'de> Deserialize<'de> for AnalyzeDocumentResponse
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 AnalyzeDocumentResponse
impl PartialEq for AnalyzeDocumentResponse
impl StructuralPartialEq for AnalyzeDocumentResponse
Auto Trait Implementations§
impl Freeze for AnalyzeDocumentResponse
impl RefUnwindSafe for AnalyzeDocumentResponse
impl Send for AnalyzeDocumentResponse
impl Sync for AnalyzeDocumentResponse
impl Unpin for AnalyzeDocumentResponse
impl UnwindSafe for AnalyzeDocumentResponse
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