pub struct KeyValueStore {
pub id: String,
pub name: Option<String>,
pub user_id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub modified_at: Option<DateTime<Utc>>,
pub extra: Extra,
}Expand description
A key-value store storage.
Fields§
§id: StringUnique store ID.
name: Option<String>Technical name of the store, if named.
user_id: Option<String>ID of the owner.
created_at: Option<DateTime<Utc>>When the store was created.
modified_at: Option<DateTime<Utc>>When the store was last modified.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl Clone for KeyValueStore
impl Clone for KeyValueStore
Source§fn clone(&self) -> KeyValueStore
fn clone(&self) -> KeyValueStore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KeyValueStore
impl Debug for KeyValueStore
Source§impl<'de> Deserialize<'de> for KeyValueStore
impl<'de> Deserialize<'de> for KeyValueStore
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
Auto Trait Implementations§
impl Freeze for KeyValueStore
impl RefUnwindSafe for KeyValueStore
impl Send for KeyValueStore
impl Sync for KeyValueStore
impl Unpin for KeyValueStore
impl UnsafeUnpin for KeyValueStore
impl UnwindSafe for KeyValueStore
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