[][src]Struct rusoto_textract::DocumentLocation

pub struct DocumentLocation {
    pub s3_object: Option<S3Object>,
}

The Amazon S3 bucket that contains the document to be processed. It's used by asynchronous operations such as StartDocumentTextDetection.

The input document can be an image file in JPEG or PNG format. It can also be a file in PDF format.

Fields

s3_object: Option<S3Object>

The Amazon S3 bucket that contains the input document.

Trait Implementations

impl Clone for DocumentLocation[src]

impl Debug for DocumentLocation[src]

impl Default for DocumentLocation[src]

impl PartialEq<DocumentLocation> for DocumentLocation[src]

impl Serialize for DocumentLocation[src]

impl StructuralPartialEq for DocumentLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.