pub struct ConfigStoreItemResponse {
pub item_key: Option<String>,
pub item_value: Option<String>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub store_id: Option<Box<String>>,
}
Fields§
§item_key: Option<String>
Item key, maximum 256 characters.
item_value: Option<String>
Item value, maximum 8000 characters.
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.
store_id: Option<Box<String>>
Implementations§
Source§impl ConfigStoreItemResponse
impl ConfigStoreItemResponse
pub fn new() -> ConfigStoreItemResponse
Trait Implementations§
Source§impl Clone for ConfigStoreItemResponse
impl Clone for ConfigStoreItemResponse
Source§fn clone(&self) -> ConfigStoreItemResponse
fn clone(&self) -> ConfigStoreItemResponse
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 ConfigStoreItemResponse
impl Debug for ConfigStoreItemResponse
Source§impl Default for ConfigStoreItemResponse
impl Default for ConfigStoreItemResponse
Source§fn default() -> ConfigStoreItemResponse
fn default() -> ConfigStoreItemResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigStoreItemResponse
impl<'de> Deserialize<'de> for ConfigStoreItemResponse
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 ConfigStoreItemResponse
impl PartialEq for ConfigStoreItemResponse
Source§impl Serialize for ConfigStoreItemResponse
impl Serialize for ConfigStoreItemResponse
impl StructuralPartialEq for ConfigStoreItemResponse
Auto Trait Implementations§
impl Freeze for ConfigStoreItemResponse
impl RefUnwindSafe for ConfigStoreItemResponse
impl Send for ConfigStoreItemResponse
impl Sync for ConfigStoreItemResponse
impl Unpin for ConfigStoreItemResponse
impl UnwindSafe for ConfigStoreItemResponse
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