pub struct GetSecretResponse {
pub data: Value,
pub auth: Option<String>,
pub lease_duration: i32,
pub lease_id: String,
pub renewable: bool,
pub request_id: String,
}
Expand description
Response from executing GetSecretRequest
Fields§
§data: Value
§auth: Option<String>
Auth is always null, official doc does not document this field
lease_duration: i32
§lease_id: String
§renewable: bool
§request_id: String
Trait Implementations§
source§impl Debug for GetSecretResponse
impl Debug for GetSecretResponse
source§impl<'de> Deserialize<'de> for GetSecretResponse
impl<'de> Deserialize<'de> for GetSecretResponse
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 GetSecretResponse
impl RefUnwindSafe for GetSecretResponse
impl Send for GetSecretResponse
impl Sync for GetSecretResponse
impl Unpin for GetSecretResponse
impl UnwindSafe for GetSecretResponse
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