[][src]Enum s3::command::Command

pub enum Command<'a> {
    DeleteObject,
    DeleteObjectTagging,
    GetObject,
    GetObjectTagging,
    PutObject {
        content: &'a [u8],
        content_type: &'a str,
    },
    PutObjectTagging {
        tags: &'a str,
    },
    ListBucket {
        prefix: String,
        delimiter: Option<String>,
        continuation_token: Option<String>,
    },
    GetBucketLocation,
}

Variants

DeleteObjectDeleteObjectTaggingGetObjectGetObjectTaggingPutObject

Fields of PutObject

content: &'a [u8]content_type: &'a str
PutObjectTagging

Fields of PutObjectTagging

tags: &'a str
ListBucket

Fields of ListBucket

prefix: Stringdelimiter: Option<String>continuation_token: Option<String>
GetBucketLocation

Methods

impl<'a> Command<'a>[src]

pub fn http_verb(&self) -> Method[src]

Trait Implementations

impl<'a> Clone for Command<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for Command<'a>

impl<'a> Sync for Command<'a>

impl<'a> Send for Command<'a>

impl<'a> UnwindSafe for Command<'a>

impl<'a> RefUnwindSafe for Command<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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