pub struct SecretResponse {
pub name: Option<String>,
pub digest: Option<String>,
pub created_at: Option<String>,
pub recreated: Option<bool>,
}
Fields§
§name: Option<String>
Name of the secret.
digest: Option<String>
An opaque identifier of the plaintext secret value. This can be used to determine if a secret value has changed.
created_at: Option<String>
Date and time in ISO 8601 format.
recreated: Option<bool>
True if the secret replaced a secret with the same name.
Implementations§
Source§impl SecretResponse
impl SecretResponse
pub fn new() -> SecretResponse
Trait Implementations§
Source§impl Clone for SecretResponse
impl Clone for SecretResponse
Source§fn clone(&self) -> SecretResponse
fn clone(&self) -> SecretResponse
Returns a duplicate 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 SecretResponse
impl Debug for SecretResponse
Source§impl Default for SecretResponse
impl Default for SecretResponse
Source§fn default() -> SecretResponse
fn default() -> SecretResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretResponse
impl<'de> Deserialize<'de> for SecretResponse
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 SecretResponse
impl PartialEq for SecretResponse
Source§impl Serialize for SecretResponse
impl Serialize for SecretResponse
impl StructuralPartialEq for SecretResponse
Auto Trait Implementations§
impl Freeze for SecretResponse
impl RefUnwindSafe for SecretResponse
impl Send for SecretResponse
impl Sync for SecretResponse
impl Unpin for SecretResponse
impl UnwindSafe for SecretResponse
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