pub struct SecretInfoReport {
pub created_at: Option<String>,
pub id: Option<String>,
pub secret_data: Option<String>,
pub spec: Option<Box<SecretSpec>>,
pub updated_at: Option<String>,
}
Fields§
§created_at: Option<String>
§id: Option<String>
§secret_data: Option<String>
§spec: Option<Box<SecretSpec>>
§updated_at: Option<String>
Implementations§
Source§impl SecretInfoReport
impl SecretInfoReport
pub fn new() -> SecretInfoReport
Trait Implementations§
Source§impl Clone for SecretInfoReport
impl Clone for SecretInfoReport
Source§fn clone(&self) -> SecretInfoReport
fn clone(&self) -> SecretInfoReport
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 SecretInfoReport
impl Debug for SecretInfoReport
Source§impl Default for SecretInfoReport
impl Default for SecretInfoReport
Source§fn default() -> SecretInfoReport
fn default() -> SecretInfoReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretInfoReport
impl<'de> Deserialize<'de> for SecretInfoReport
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 SecretInfoReport
impl PartialEq for SecretInfoReport
Source§impl Serialize for SecretInfoReport
impl Serialize for SecretInfoReport
impl StructuralPartialEq for SecretInfoReport
Auto Trait Implementations§
impl Freeze for SecretInfoReport
impl RefUnwindSafe for SecretInfoReport
impl Send for SecretInfoReport
impl Sync for SecretInfoReport
impl Unpin for SecretInfoReport
impl UnwindSafe for SecretInfoReport
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