fusio 0.6.0

Fusio provides lean, minimal cost abstraction and extensible Read / Write trait to multiple storage on multiple poll-based / completion-based async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::credential::AwsCredential;

pub(crate) struct S3Options {
    pub(crate) endpoint: String,
    pub(crate) bucket: String,
    pub(crate) region: String,
    pub(crate) credential: Option<AwsCredential>,
    pub(crate) sign_payload: bool,
    pub(crate) checksum: bool,
}