pub struct SecretStoreResponse {
pub id: Option<String>,
pub name: Option<String>,
pub created_at: Option<String>,
}
Fields§
§id: Option<String>
ID of the store.
name: Option<String>
A human-readable name for the store.
created_at: Option<String>
Date and time in ISO 8601 format.
Implementations§
Source§impl SecretStoreResponse
impl SecretStoreResponse
pub fn new() -> SecretStoreResponse
Trait Implementations§
Source§impl Clone for SecretStoreResponse
impl Clone for SecretStoreResponse
Source§fn clone(&self) -> SecretStoreResponse
fn clone(&self) -> SecretStoreResponse
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 SecretStoreResponse
impl Debug for SecretStoreResponse
Source§impl Default for SecretStoreResponse
impl Default for SecretStoreResponse
Source§fn default() -> SecretStoreResponse
fn default() -> SecretStoreResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretStoreResponse
impl<'de> Deserialize<'de> for SecretStoreResponse
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 SecretStoreResponse
impl PartialEq for SecretStoreResponse
Source§impl Serialize for SecretStoreResponse
impl Serialize for SecretStoreResponse
impl StructuralPartialEq for SecretStoreResponse
Auto Trait Implementations§
impl Freeze for SecretStoreResponse
impl RefUnwindSafe for SecretStoreResponse
impl Send for SecretStoreResponse
impl Sync for SecretStoreResponse
impl Unpin for SecretStoreResponse
impl UnwindSafe for SecretStoreResponse
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