pub enum RecoveredValue {
String(Bytes),
List(VecDeque<Bytes>),
SortedSet(Vec<(f64, String)>),
Hash(HashMap<String, Bytes>),
Set(HashSet<String>),
}Expand description
The value of a recovered entry.
Variants§
String(Bytes)
List(VecDeque<Bytes>)
SortedSet(Vec<(f64, String)>)
Sorted set stored as (score, member) pairs.
Hash(HashMap<String, Bytes>)
Hash map of field names to values.
Set(HashSet<String>)
Unordered set of unique string members.
Trait Implementations§
Source§impl Clone for RecoveredValue
impl Clone for RecoveredValue
Source§fn clone(&self) -> RecoveredValue
fn clone(&self) -> RecoveredValue
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 RecoveredValue
impl Debug for RecoveredValue
Auto Trait Implementations§
impl !Freeze for RecoveredValue
impl RefUnwindSafe for RecoveredValue
impl Send for RecoveredValue
impl Sync for RecoveredValue
impl Unpin for RecoveredValue
impl UnwindSafe for RecoveredValue
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