pub enum DictionaryUpdate {
None,
New,
Replaced,
Delta(ArrayData),
}
Expand description
Describes what kind of update took place after a call to DictionaryTracker::insert
.
Variants§
None
No dictionary was written, the dictionary was identical to what was already in the tracker.
New
No dictionary was present in the tracker
Replaced
Dictionary was replaced with the new data
Delta(ArrayData)
Dictionary was updated, ArrayData is the delta between old and new
Trait Implementations§
Source§impl Clone for DictionaryUpdate
impl Clone for DictionaryUpdate
Source§fn clone(&self) -> DictionaryUpdate
fn clone(&self) -> DictionaryUpdate
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 moreAuto Trait Implementations§
impl Freeze for DictionaryUpdate
impl RefUnwindSafe for DictionaryUpdate
impl Send for DictionaryUpdate
impl Sync for DictionaryUpdate
impl Unpin for DictionaryUpdate
impl UnwindSafe for DictionaryUpdate
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