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<ValueEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ValueEntry, <__D as Deserializer<'de>>::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§fn from(value: Value) -> ValueEntry
fn from(value: Value) -> ValueEntry
Converts to this type from the input type.
Source§impl From<ValueEntry> for Value
impl From<ValueEntry> for Value
Source§fn from(value: ValueEntry) -> Value
fn from(value: ValueEntry) -> Value
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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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