pub struct DocPathValueIndex {
pub collection: String,
pub documents: Vec<DocPathValueRecord>,
}Expand description
A decoded document path/value artifact (RDDP).
Fields§
§collection: StringCollection the artifact was built over.
documents: Vec<DocPathValueRecord>Document records in persistence order.
Trait Implementations§
Source§impl Clone for DocPathValueIndex
impl Clone for DocPathValueIndex
Source§fn clone(&self) -> DocPathValueIndex
fn clone(&self) -> DocPathValueIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DocPathValueIndex
impl Debug for DocPathValueIndex
Source§impl PartialEq for DocPathValueIndex
impl PartialEq for DocPathValueIndex
Source§fn eq(&self, other: &DocPathValueIndex) -> bool
fn eq(&self, other: &DocPathValueIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DocPathValueIndex
Auto Trait Implementations§
impl Freeze for DocPathValueIndex
impl RefUnwindSafe for DocPathValueIndex
impl Send for DocPathValueIndex
impl Sync for DocPathValueIndex
impl Unpin for DocPathValueIndex
impl UnsafeUnpin for DocPathValueIndex
impl UnwindSafe for DocPathValueIndex
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