pub struct GetDocumentTextDetectionRequest {
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 StartDocumentTextDetection. 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 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 GetDocumentTextDetectionRequest
impl Clone for GetDocumentTextDetectionRequest
Source§fn clone(&self) -> GetDocumentTextDetectionRequest
fn clone(&self) -> GetDocumentTextDetectionRequest
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 Default for GetDocumentTextDetectionRequest
impl Default for GetDocumentTextDetectionRequest
Source§fn default() -> GetDocumentTextDetectionRequest
fn default() -> GetDocumentTextDetectionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetDocumentTextDetectionRequest
impl PartialEq for GetDocumentTextDetectionRequest
Source§fn eq(&self, other: &GetDocumentTextDetectionRequest) -> bool
fn eq(&self, other: &GetDocumentTextDetectionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetDocumentTextDetectionRequest
Auto Trait Implementations§
impl Freeze for GetDocumentTextDetectionRequest
impl RefUnwindSafe for GetDocumentTextDetectionRequest
impl Send for GetDocumentTextDetectionRequest
impl Sync for GetDocumentTextDetectionRequest
impl Unpin for GetDocumentTextDetectionRequest
impl UnwindSafe for GetDocumentTextDetectionRequest
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