pub struct GetStaticCredentialsResponse {
pub last_vault_rotation: String,
pub password: String,
pub rotation_period: u64,
pub ttl: u64,
pub username: String,
}
Expand description
Response from executing GetStaticCredentialsRequest
Fields§
§last_vault_rotation: String
§password: String
§rotation_period: u64
§ttl: u64
§username: String
Trait Implementations§
source§impl Debug for GetStaticCredentialsResponse
impl Debug for GetStaticCredentialsResponse
source§impl<'de> Deserialize<'de> for GetStaticCredentialsResponse
impl<'de> Deserialize<'de> for GetStaticCredentialsResponse
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
Auto Trait Implementations§
impl Freeze for GetStaticCredentialsResponse
impl RefUnwindSafe for GetStaticCredentialsResponse
impl Send for GetStaticCredentialsResponse
impl Sync for GetStaticCredentialsResponse
impl Unpin for GetStaticCredentialsResponse
impl UnwindSafe for GetStaticCredentialsResponse
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