pub struct FileTextFtsPage {
pub candidates: Vec<FileTextFtsCandidate>,
pub overflow: bool,
}Expand description
Bounded FTS candidate page for service-owned exact verification.
Fields§
§candidates: Vec<FileTextFtsCandidate>Candidates ordered by BM25 and repository path.
overflow: boolWhether at least one more candidate matched the bound query.
Trait Implementations§
Source§impl Clone for FileTextFtsPage
impl Clone for FileTextFtsPage
Source§fn clone(&self) -> FileTextFtsPage
fn clone(&self) -> FileTextFtsPage
Returns a duplicate of the value. Read more
1.0.0 · 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 FileTextFtsPage
impl Debug for FileTextFtsPage
Source§impl PartialEq for FileTextFtsPage
impl PartialEq for FileTextFtsPage
impl StructuralPartialEq for FileTextFtsPage
Auto Trait Implementations§
impl Freeze for FileTextFtsPage
impl RefUnwindSafe for FileTextFtsPage
impl Send for FileTextFtsPage
impl Sync for FileTextFtsPage
impl Unpin for FileTextFtsPage
impl UnwindSafe for FileTextFtsPage
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