pub struct SecretInspect {
pub id: String,
pub created_at: String,
pub updated_at: String,
pub spec: SecretInspectSpec,
pub secret_data: Option<String>,
}
Fields§
§id: String
§created_at: String
§updated_at: String
§spec: SecretInspectSpec
§secret_data: Option<String>
Trait Implementations§
Source§impl Debug for SecretInspect
impl Debug for SecretInspect
Source§impl<'de> Deserialize<'de> for SecretInspect
impl<'de> Deserialize<'de> for SecretInspect
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 SecretInspect
impl RefUnwindSafe for SecretInspect
impl Send for SecretInspect
impl Sync for SecretInspect
impl Unpin for SecretInspect
impl UnwindSafe for SecretInspect
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