pub struct S3 {
pub enabled: bool,
pub access_key: Option<String>,
pub secret_key: Option<String>,
pub region: Option<String>,
pub endpoint: Option<String>,
pub allow_http: bool,
pub crates_bucket: Option<String>,
pub cratesio_bucket: Option<String>,
}Fields§
§enabled: bool§access_key: Option<String>§secret_key: Option<String>§region: Option<String>§endpoint: Option<String>§allow_http: bool§crates_bucket: Option<String>§cratesio_bucket: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for S3
impl<'de> Deserialize<'de> for S3
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for S3
impl StructuralPartialEq for S3
Auto Trait Implementations§
impl Freeze for S3
impl RefUnwindSafe for S3
impl Send for S3
impl Sync for S3
impl Unpin for S3
impl UnwindSafe for S3
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