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

pub enum Command<'a> {
    Put {
        content: &'a [u8],
        content_type: &'a str,
    },
    Get,
    Delete,
    List {
        prefix: &'a str,
        delimiter: Option<&'a str>,
    },
}

Variants

Fields of Put

Fields of List

Methods

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