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
PutFields of Put
content: &'a [u8] | |
content_type: &'a str |
GetDeleteListFields of List
prefix: &'a str | |
delimiter: Option<&'a str> |