bws-rs 0.1.1

rust s3 backend service framework, quick build yourself s3 gateway, or object storage
Documentation
1
2
3
4
5
6
7
8
pub mod v2;
pub mod v4;
pub trait AccesskeyStore:Send+Sync {
    fn get<'a>(
        &'a self,
        accesskey: &'a str,
    ) -> std::pin::Pin<Box<dyn 'a+Send+Sync+std::future::Future<Output = Result<Option<String>, String>>>>;
}