#[repr(C)]pub struct C4FullTextMatch {
pub dataSource: u64,
pub property: u32,
pub term: u32,
pub start: u32,
pub length: u32,
}Expand description
Info about a match of a full-text query term.
Fields§
§dataSource: u64< Opaque identifier of where text is stored
property: u32< Which property in the index was matched (array index in expressionsJSON)
term: u32< Which search term (word) in the query was matched
start: u32< Byte range start of the match in the full text
length: u32< Byte range length of the match in the full text
Trait Implementations§
Source§impl Clone for C4FullTextMatch
impl Clone for C4FullTextMatch
Source§fn clone(&self) -> C4FullTextMatch
fn clone(&self) -> C4FullTextMatch
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 C4FullTextMatch
impl Debug for C4FullTextMatch
impl Copy for C4FullTextMatch
Auto Trait Implementations§
impl Freeze for C4FullTextMatch
impl RefUnwindSafe for C4FullTextMatch
impl Send for C4FullTextMatch
impl Sync for C4FullTextMatch
impl Unpin for C4FullTextMatch
impl UnwindSafe for C4FullTextMatch
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