enum DictionaryComparison {
NotEqual,
Equal,
Delta,
}
Expand description
Describes how two dictionary arrays compare to each other.
Variants§
NotEqual
Neither a delta, nor an exact match
Equal
Exact element-wise match
Delta
The two arrays are dictionary deltas of each other, meaning the first is a prefix of the second.
Trait Implementations§
Source§impl Clone for DictionaryComparison
impl Clone for DictionaryComparison
Source§fn clone(&self) -> DictionaryComparison
fn clone(&self) -> DictionaryComparison
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 DictionaryComparison
impl RefUnwindSafe for DictionaryComparison
impl Send for DictionaryComparison
impl Sync for DictionaryComparison
impl Unpin for DictionaryComparison
impl UnwindSafe for DictionaryComparison
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