pub struct ValueEntry {
pub value: String,
pub version: u64,
pub created_at: u64,
pub updated_at: u64,
pub size: usize,
}Expand description
Value entry in the store with metadata
Fields§
§value: String§version: u64§created_at: u64§updated_at: u64§size: usizeImplementations§
Trait Implementations§
Source§impl Clone for ValueEntry
impl Clone for ValueEntry
Source§fn clone(&self) -> ValueEntry
fn clone(&self) -> ValueEntry
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 ValueEntry
impl Debug for ValueEntry
Source§impl<'de> Deserialize<'de> for ValueEntry
impl<'de> Deserialize<'de> for ValueEntry
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 ValueEntry
impl RefUnwindSafe for ValueEntry
impl Send for ValueEntry
impl Sync for ValueEntry
impl Unpin for ValueEntry
impl UnsafeUnpin for ValueEntry
impl UnwindSafe for ValueEntry
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