pub enum ValueEntry {
Cas(Value, u64),
Plain(Value),
}Variants§
Trait Implementations§
Source§impl AsRef<Value> for ValueEntry
impl AsRef<Value> for ValueEntry
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 · 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
Source§impl From<Value> for ValueEntry
impl From<Value> for ValueEntry
Source§impl From<ValueEntry> for Value
impl From<ValueEntry> for Value
Source§fn from(value: ValueEntry) -> Self
fn from(value: ValueEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ValueEntry
impl PartialEq for ValueEntry
Source§impl Serialize for ValueEntry
impl Serialize for ValueEntry
impl StructuralPartialEq for ValueEntry
Auto Trait Implementations§
impl Freeze for ValueEntry
impl RefUnwindSafe for ValueEntry
impl Send for ValueEntry
impl Sync for ValueEntry
impl Unpin 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