pub struct NativeFulltextFrame {
pub collection: String,
pub doc_count: u32,
pub terms: Vec<NativeFulltextTerm>,
}Expand description
A decoded full-text (RDFT) artifact.
Fields§
§collection: String§doc_count: u32Number of source documents (independent of the posting lists).
terms: Vec<NativeFulltextTerm>Trait Implementations§
Source§impl Clone for NativeFulltextFrame
impl Clone for NativeFulltextFrame
Source§fn clone(&self) -> NativeFulltextFrame
fn clone(&self) -> NativeFulltextFrame
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 NativeFulltextFrame
impl Debug for NativeFulltextFrame
impl Eq for NativeFulltextFrame
Source§impl PartialEq for NativeFulltextFrame
impl PartialEq for NativeFulltextFrame
impl StructuralPartialEq for NativeFulltextFrame
Auto Trait Implementations§
impl Freeze for NativeFulltextFrame
impl RefUnwindSafe for NativeFulltextFrame
impl Send for NativeFulltextFrame
impl Sync for NativeFulltextFrame
impl Unpin for NativeFulltextFrame
impl UnsafeUnpin for NativeFulltextFrame
impl UnwindSafe for NativeFulltextFrame
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