pub enum LogEntry<K1, K2, V> {
Insert(K1, K2, V),
Remove(K1, K2),
CreateKey(K1),
ClearKey(K1),
Clear,
}Variants§
Trait Implementations§
Source§impl<'de, K1, K2, V> Deserialize<'de> for LogEntry<K1, K2, V>
impl<'de, K1, K2, V> Deserialize<'de> for LogEntry<K1, K2, V>
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<K1, K2, V> Freeze for LogEntry<K1, K2, V>
impl<K1, K2, V> RefUnwindSafe for LogEntry<K1, K2, V>
impl<K1, K2, V> Send for LogEntry<K1, K2, V>
impl<K1, K2, V> Sync for LogEntry<K1, K2, V>
impl<K1, K2, V> Unpin for LogEntry<K1, K2, V>
impl<K1, K2, V> UnwindSafe for LogEntry<K1, K2, V>
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