pub struct PersistentViewIndex {
pub ddoc: String,
pub view_name: String,
pub last_seq: Seq,
pub entries: BTreeMap<String, Vec<(Value, Value)>>,
}Expand description
A persistent view index that is incrementally updated.
Fields§
§ddoc: String§view_name: String§last_seq: Seq§entries: BTreeMap<String, Vec<(Value, Value)>>doc_id -> list of emitted (key, value) pairs.
Auto Trait Implementations§
impl Freeze for PersistentViewIndex
impl RefUnwindSafe for PersistentViewIndex
impl Send for PersistentViewIndex
impl Sync for PersistentViewIndex
impl Unpin for PersistentViewIndex
impl UnwindSafe for PersistentViewIndex
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