#[non_exhaustive]pub struct DatabaseStaticCredentials {
pub username: SecretString,
pub password: SecretString,
pub last_vault_rotation: Option<String>,
pub rotation_period: u64,
pub ttl: u64,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.username: SecretString§password: SecretString§last_vault_rotation: Option<String>§rotation_period: u64§ttl: u64Trait Implementations§
Source§impl Clone for DatabaseStaticCredentials
impl Clone for DatabaseStaticCredentials
Source§impl Debug for DatabaseStaticCredentials
impl Debug for DatabaseStaticCredentials
Source§impl<'de> Deserialize<'de> for DatabaseStaticCredentials
impl<'de> Deserialize<'de> for DatabaseStaticCredentials
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 Drop for DatabaseStaticCredentials
impl Drop for DatabaseStaticCredentials
Auto Trait Implementations§
impl Freeze for DatabaseStaticCredentials
impl RefUnwindSafe for DatabaseStaticCredentials
impl Send for DatabaseStaticCredentials
impl Sync for DatabaseStaticCredentials
impl Unpin for DatabaseStaticCredentials
impl UnsafeUnpin for DatabaseStaticCredentials
impl UnwindSafe for DatabaseStaticCredentials
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