Skip to content

Instantly share code, notes, and snippets.

View LucioFranco's full-sized avatar

Lucio Franco LucioFranco

View GitHub Profile
@LucioFranco
LucioFranco / aws.rs
Last active August 27, 2019 22:50 — forked from davidbarsky/aws.rs
#![feature(async_await)]
use failure::{Fail, Error};
use std::future::Future;
use std::pin::Pin;
/// `S3Request` is a trait that specifies:
/// - the service request/response pairing.
/// - the service protocol (json, rest-json, rest-xml, or query)
/// - optionally, additional metadata.