pub struct KeyValueStore {
pub id: String,
pub name: String,
pub arn: String,
pub comment: String,
pub status: String,
pub last_modified_time: DateTime<Utc>,
pub etag: String,
}Expand description
KVStore record.
Fields§
§id: StringKVS ID.
name: StringKVS name.
arn: StringARN.
comment: StringComment.
status: StringStatus.
last_modified_time: DateTime<Utc>Last-modified.
etag: StringETag.
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 · 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