pub struct AwsCredentialsSecretBase {
pub access_key: Option<String>,
pub secret_key: Option<String>,
pub secret_type: Option<Box<SecretType>>,
}
Fields§
§access_key: Option<String>
AWS access key
secret_key: Option<String>
AWS secret key
secret_type: Option<Box<SecretType>>
Implementations§
source§impl AwsCredentialsSecretBase
impl AwsCredentialsSecretBase
pub fn new() -> AwsCredentialsSecretBase
Trait Implementations§
source§impl Clone for AwsCredentialsSecretBase
impl Clone for AwsCredentialsSecretBase
source§fn clone(&self) -> AwsCredentialsSecretBase
fn clone(&self) -> AwsCredentialsSecretBase
Returns a copy of the value. Read more
1.0.0 · 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 AwsCredentialsSecretBase
impl Debug for AwsCredentialsSecretBase
source§impl<'de> Deserialize<'de> for AwsCredentialsSecretBase
impl<'de> Deserialize<'de> for AwsCredentialsSecretBase
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 AwsCredentialsSecretBase
impl PartialEq for AwsCredentialsSecretBase
source§fn eq(&self, other: &AwsCredentialsSecretBase) -> bool
fn eq(&self, other: &AwsCredentialsSecretBase) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AwsCredentialsSecretBase
impl Serialize for AwsCredentialsSecretBase
impl StructuralPartialEq for AwsCredentialsSecretBase
Auto Trait Implementations§
impl RefUnwindSafe for AwsCredentialsSecretBase
impl Send for AwsCredentialsSecretBase
impl Sync for AwsCredentialsSecretBase
impl Unpin for AwsCredentialsSecretBase
impl UnwindSafe for AwsCredentialsSecretBase
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