pub struct GetDocumentAnalysisRequest {
pub job_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§job_id: StringA unique identifier for the text-detection job. The JobId is returned from StartDocumentAnalysis. A JobId value is only valid for 7 days.
max_results: Option<i64>The maximum number of results to return per paginated call. The largest value that you can specify is 1,000. If you specify a value greater than 1,000, a maximum of 1,000 results is returned. The default value is 1,000.
next_token: Option<String>If the previous response was incomplete (because there are more blocks to retrieve), Amazon Textract returns a pagination token in the response. You can use this pagination token to retrieve the next set of blocks.
Trait Implementations§
Source§impl Clone for GetDocumentAnalysisRequest
impl Clone for GetDocumentAnalysisRequest
Source§fn clone(&self) -> GetDocumentAnalysisRequest
fn clone(&self) -> GetDocumentAnalysisRequest
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 GetDocumentAnalysisRequest
impl Debug for GetDocumentAnalysisRequest
Source§impl Default for GetDocumentAnalysisRequest
impl Default for GetDocumentAnalysisRequest
Source§fn default() -> GetDocumentAnalysisRequest
fn default() -> GetDocumentAnalysisRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetDocumentAnalysisRequest
Auto Trait Implementations§
impl Freeze for GetDocumentAnalysisRequest
impl RefUnwindSafe for GetDocumentAnalysisRequest
impl Send for GetDocumentAnalysisRequest
impl Sync for GetDocumentAnalysisRequest
impl Unpin for GetDocumentAnalysisRequest
impl UnwindSafe for GetDocumentAnalysisRequest
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