pub struct KeyValueStoreKey {
pub key: String,
pub size: Option<i64>,
pub extra: Extra,
}Expand description
Metadata about a single key in a key-value store.
Fields§
§key: StringThe record key.
size: Option<i64>Size of the record value in bytes.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl Clone for KeyValueStoreKey
impl Clone for KeyValueStoreKey
Source§fn clone(&self) -> KeyValueStoreKey
fn clone(&self) -> KeyValueStoreKey
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 KeyValueStoreKey
impl Debug for KeyValueStoreKey
Source§impl<'de> Deserialize<'de> for KeyValueStoreKey
impl<'de> Deserialize<'de> for KeyValueStoreKey
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 KeyValueStoreKey
impl RefUnwindSafe for KeyValueStoreKey
impl Send for KeyValueStoreKey
impl Sync for KeyValueStoreKey
impl Unpin for KeyValueStoreKey
impl UnsafeUnpin for KeyValueStoreKey
impl UnwindSafe for KeyValueStoreKey
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