pub struct KvStoreDetails {
pub id: Option<String>,
pub name: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Fields§
§id: Option<String>ID of the store.
name: Option<String>Name of the store.
created_at: Option<String>Timestamp at which the store was created.
updated_at: Option<String>Timestamp at which the store was last updated.
Implementations§
Source§impl KvStoreDetails
impl KvStoreDetails
pub fn new() -> KvStoreDetails
Trait Implementations§
Source§impl Clone for KvStoreDetails
impl Clone for KvStoreDetails
Source§fn clone(&self) -> KvStoreDetails
fn clone(&self) -> KvStoreDetails
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 KvStoreDetails
impl Debug for KvStoreDetails
Source§impl Default for KvStoreDetails
impl Default for KvStoreDetails
Source§fn default() -> KvStoreDetails
fn default() -> KvStoreDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KvStoreDetails
impl<'de> Deserialize<'de> for KvStoreDetails
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 KvStoreDetails
impl PartialEq for KvStoreDetails
Source§impl Serialize for KvStoreDetails
impl Serialize for KvStoreDetails
impl StructuralPartialEq for KvStoreDetails
Auto Trait Implementations§
impl Freeze for KvStoreDetails
impl RefUnwindSafe for KvStoreDetails
impl Send for KvStoreDetails
impl Sync for KvStoreDetails
impl Unpin for KvStoreDetails
impl UnwindSafe for KvStoreDetails
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