pub struct IdxRow {
pub key: Vec<u8>,
pub value: Vec<u8>,
}Expand description
One IDX.QUERY hit: the row’s key plus the indexed value’s string
form (the same repr the wire carries).
Fields§
§key: Vec<u8>The matching key.
value: Vec<u8>The indexed field value, in its wire string form.
Trait Implementations§
impl Eq for IdxRow
impl StructuralPartialEq for IdxRow
Auto Trait Implementations§
impl Freeze for IdxRow
impl RefUnwindSafe for IdxRow
impl Send for IdxRow
impl Sync for IdxRow
impl Unpin for IdxRow
impl UnsafeUnpin for IdxRow
impl UnwindSafe for IdxRow
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