pub struct SecretInfo {Show 15 fields
pub created: Option<String>,
pub description: Option<String>,
pub expiration: Option<String>,
pub github: Option<Box<GithubMetadata>>,
pub key_id: Option<String>,
pub last_retrieved: Option<String>,
pub location: Option<Option<Value>>,
pub name: Option<String>,
pub region: Option<String>,
pub secret_id: Option<String>,
pub status: Option<bool>,
pub tags: Option<HashMap<String, String>>,
pub thumbprint: Option<String>,
pub type: Option<String>,
pub version: Option<i64>,
}Fields§
§created: Option<String>§description: Option<String>§expiration: Option<String>§github: Option<Box<GithubMetadata>>§key_id: Option<String>§last_retrieved: Option<String>§location: Option<Option<Value>>§name: Option<String>§region: Option<String>§secret_id: Option<String>§status: Option<bool>§thumbprint: Option<String>§type: Option<String>§version: Option<i64>Implementations§
Source§impl SecretInfo
impl SecretInfo
pub fn new() -> SecretInfo
Trait Implementations§
Source§impl Clone for SecretInfo
impl Clone for SecretInfo
Source§fn clone(&self) -> SecretInfo
fn clone(&self) -> SecretInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SecretInfo
impl Debug for SecretInfo
Source§impl Default for SecretInfo
impl Default for SecretInfo
Source§fn default() -> SecretInfo
fn default() -> SecretInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretInfo
impl<'de> Deserialize<'de> for SecretInfo
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 SecretInfo
impl PartialEq for SecretInfo
Source§fn eq(&self, other: &SecretInfo) -> bool
fn eq(&self, other: &SecretInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SecretInfo
impl Serialize for SecretInfo
impl StructuralPartialEq for SecretInfo
Auto Trait Implementations§
impl Freeze for SecretInfo
impl RefUnwindSafe for SecretInfo
impl Send for SecretInfo
impl Sync for SecretInfo
impl Unpin for SecretInfo
impl UnsafeUnpin for SecretInfo
impl UnwindSafe for SecretInfo
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