[][src]Struct rusoto_kendra::S3Path

pub struct S3Path {
    pub bucket: String,
    pub key: String,
}

Information required to find a specific file in an Amazon S3 bucket.

Fields

bucket: String

The name of the S3 bucket that contains the file.

key: String

The name of the file.

Trait Implementations

impl Clone for S3Path[src]

impl Debug for S3Path[src]

impl Default for S3Path[src]

impl<'de> Deserialize<'de> for S3Path[src]

impl PartialEq<S3Path> for S3Path[src]

impl Serialize for S3Path[src]

impl StructuralPartialEq for S3Path[src]

Auto Trait Implementations

impl RefUnwindSafe for S3Path

impl Send for S3Path

impl Sync for S3Path

impl Unpin for S3Path

impl UnwindSafe for S3Path

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> 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.