pub struct SecretVersionMetadata {
pub created_time: String,
pub deletion_time: String,
pub custom_metadata: Option<HashMap<String, String>>,
pub destroyed: bool,
pub version: u64,
}
Expand description
Response from executing ReadSecretRequest
Fields§
§created_time: String
§deletion_time: String
§custom_metadata: Option<HashMap<String, String>>
§destroyed: bool
§version: u64
Trait Implementations§
source§impl Debug for SecretVersionMetadata
impl Debug for SecretVersionMetadata
source§impl<'de> Deserialize<'de> for SecretVersionMetadata
impl<'de> Deserialize<'de> for SecretVersionMetadata
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 SecretVersionMetadata
impl RefUnwindSafe for SecretVersionMetadata
impl Send for SecretVersionMetadata
impl Sync for SecretVersionMetadata
impl Unpin for SecretVersionMetadata
impl UnwindSafe for SecretVersionMetadata
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