pub struct KvSetEntry {
pub key: String,
pub value: String,
}Expand description
A single key/value entry returned by get_sets.
Fields§
§key: StringKey identifying the set.
value: StringStored string value.
Trait Implementations§
Source§impl Clone for KvSetEntry
impl Clone for KvSetEntry
Source§fn clone(&self) -> KvSetEntry
fn clone(&self) -> KvSetEntry
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 KvSetEntry
impl Debug for KvSetEntry
Source§impl<'de> Deserialize<'de> for KvSetEntry
impl<'de> Deserialize<'de> for KvSetEntry
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 KvSetEntry
impl RefUnwindSafe for KvSetEntry
impl Send for KvSetEntry
impl Sync for KvSetEntry
impl Unpin for KvSetEntry
impl UnsafeUnpin for KvSetEntry
impl UnwindSafe for KvSetEntry
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