pub struct NativeDocPathValue {
pub entity_id: u64,
pub entries: Vec<NativeDocPathValueEntry>,
}Expand description
One document and its extracted path/value entries.
Fields§
§entity_id: u64Raw entity id — a fixed u64, NOT a string.
entries: Vec<NativeDocPathValueEntry>Trait Implementations§
Source§impl Clone for NativeDocPathValue
impl Clone for NativeDocPathValue
Source§fn clone(&self) -> NativeDocPathValue
fn clone(&self) -> NativeDocPathValue
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 NativeDocPathValue
impl Debug for NativeDocPathValue
impl Eq for NativeDocPathValue
Source§impl PartialEq for NativeDocPathValue
impl PartialEq for NativeDocPathValue
impl StructuralPartialEq for NativeDocPathValue
Auto Trait Implementations§
impl Freeze for NativeDocPathValue
impl RefUnwindSafe for NativeDocPathValue
impl Send for NativeDocPathValue
impl Sync for NativeDocPathValue
impl Unpin for NativeDocPathValue
impl UnsafeUnpin for NativeDocPathValue
impl UnwindSafe for NativeDocPathValue
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