pub struct SearchQueryContentsMatch {
pub path: PathBuf,
pub lines: SearchQueryMatchData,
pub line_number: u64,
pub absolute_offset: u64,
pub submatches: Vec<SearchQuerySubmatch>,
}Expand description
Represents details for a match on a file’s contents
Fields§
§path: PathBufPath to file whose contents match
lines: SearchQueryMatchDataLine(s) that matched
line_number: u64Line number where match starts (base index 1)
absolute_offset: u64Absolute byte offset corresponding to the start of lines in the data being searched
submatches: Vec<SearchQuerySubmatch>Collection of matches tied to lines where each submatch’s byte offset is relative to
lines and not the overall content
Trait Implementations§
Source§impl Clone for SearchQueryContentsMatch
impl Clone for SearchQueryContentsMatch
Source§fn clone(&self) -> SearchQueryContentsMatch
fn clone(&self) -> SearchQueryContentsMatch
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 SearchQueryContentsMatch
impl Debug for SearchQueryContentsMatch
Source§impl<'de> Deserialize<'de> for SearchQueryContentsMatch
impl<'de> Deserialize<'de> for SearchQueryContentsMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SearchQueryContentsMatch
impl PartialEq for SearchQueryContentsMatch
Source§impl Serialize for SearchQueryContentsMatch
impl Serialize for SearchQueryContentsMatch
impl Eq for SearchQueryContentsMatch
impl StructuralPartialEq for SearchQueryContentsMatch
Auto Trait Implementations§
impl Freeze for SearchQueryContentsMatch
impl RefUnwindSafe for SearchQueryContentsMatch
impl Send for SearchQueryContentsMatch
impl Sync for SearchQueryContentsMatch
impl Unpin for SearchQueryContentsMatch
impl UnwindSafe for SearchQueryContentsMatch
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