pub struct AwsStorage {
pub access_key_id: Option<String>,
pub access_key_secret: Option<String>,
pub auth_type: Option<String>,
pub bucket: Option<String>,
pub prefix: Option<String>,
pub region: Option<String>,
}Fields§
§access_key_id: Option<String>creds
access_key_secret: Option<String>§auth_type: Option<String>§bucket: Option<String>§prefix: Option<String>§region: Option<String>Implementations§
Source§impl AwsStorage
impl AwsStorage
pub fn new() -> AwsStorage
Trait Implementations§
Source§impl Clone for AwsStorage
impl Clone for AwsStorage
Source§fn clone(&self) -> AwsStorage
fn clone(&self) -> AwsStorage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsStorage
impl Debug for AwsStorage
Source§impl Default for AwsStorage
impl Default for AwsStorage
Source§fn default() -> AwsStorage
fn default() -> AwsStorage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsStorage
impl<'de> Deserialize<'de> for AwsStorage
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
Source§impl PartialEq for AwsStorage
impl PartialEq for AwsStorage
Source§fn eq(&self, other: &AwsStorage) -> bool
fn eq(&self, other: &AwsStorage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AwsStorage
impl Serialize for AwsStorage
impl StructuralPartialEq for AwsStorage
Auto Trait Implementations§
impl Freeze for AwsStorage
impl RefUnwindSafe for AwsStorage
impl Send for AwsStorage
impl Sync for AwsStorage
impl Unpin for AwsStorage
impl UnsafeUnpin for AwsStorage
impl UnwindSafe for AwsStorage
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