pub struct S3Config {
pub endpoint: String,
pub access_key: String,
pub secret_key: String,
pub bucket: String,
pub prefix: String,
pub secure: bool,
pub ignore_cert: bool,
}Expand description
Decoupled from the host crate’s S3Config.
Fields§
§endpoint: String§access_key: String§secret_key: String§bucket: String§prefix: String§secure: bool§ignore_cert: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for S3Config
impl RefUnwindSafe for S3Config
impl Send for S3Config
impl Sync for S3Config
impl Unpin for S3Config
impl UnsafeUnpin for S3Config
impl UnwindSafe for S3Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more