pub struct DetectDocumentTextRequest {
pub document: Document,
}Fields§
§document: DocumentThe input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Textract operations, you can't pass image bytes. The document must be an image in JPEG or PNG format.
If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode image bytes that are passed using the Bytes field.
Trait Implementations§
Source§impl Clone for DetectDocumentTextRequest
impl Clone for DetectDocumentTextRequest
Source§fn clone(&self) -> DetectDocumentTextRequest
fn clone(&self) -> DetectDocumentTextRequest
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 DetectDocumentTextRequest
impl Debug for DetectDocumentTextRequest
Source§impl Default for DetectDocumentTextRequest
impl Default for DetectDocumentTextRequest
Source§fn default() -> DetectDocumentTextRequest
fn default() -> DetectDocumentTextRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DetectDocumentTextRequest
Auto Trait Implementations§
impl !Freeze for DetectDocumentTextRequest
impl RefUnwindSafe for DetectDocumentTextRequest
impl Send for DetectDocumentTextRequest
impl Sync for DetectDocumentTextRequest
impl Unpin for DetectDocumentTextRequest
impl UnwindSafe for DetectDocumentTextRequest
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