pub struct SecretVersion {
pub tags: Vec<String>,
pub id: String,
pub secret: String,
pub version: u8,
pub workspace: String,
pub secret_type: String,
pub environment: String,
pub is_deleted: bool,
pub key: EncryptedKey,
pub value: EncryptedValue,
pub v: u8,
pub audit: Audit,
}
Fields§
§id: String
§secret: String
§version: u8
§workspace: String
§secret_type: String
§environment: String
§is_deleted: bool
§key: EncryptedKey
§value: EncryptedValue
§v: u8
§audit: Audit
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SecretVersion
impl<'de> Deserialize<'de> for SecretVersion
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 SecretVersion
impl RefUnwindSafe for SecretVersion
impl Send for SecretVersion
impl Sync for SecretVersion
impl Unpin for SecretVersion
impl UnwindSafe for SecretVersion
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