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