pub struct ContentSearchHit {
pub file_path: String,
pub line_start: usize,
pub line_end: usize,
pub snippet: String,
pub language: Option<String>,
}Expand description
Content search hit from FTS.
Fields§
§file_path: String§line_start: usize§line_end: usize§snippet: String§language: Option<String>Trait Implementations§
Source§impl Clone for ContentSearchHit
impl Clone for ContentSearchHit
Source§fn clone(&self) -> ContentSearchHit
fn clone(&self) -> ContentSearchHit
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 ContentSearchHit
impl Debug for ContentSearchHit
Source§impl<'de> Deserialize<'de> for ContentSearchHit
impl<'de> Deserialize<'de> for ContentSearchHit
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
Auto Trait Implementations§
impl Freeze for ContentSearchHit
impl RefUnwindSafe for ContentSearchHit
impl Send for ContentSearchHit
impl Sync for ContentSearchHit
impl Unpin for ContentSearchHit
impl UnsafeUnpin for ContentSearchHit
impl UnwindSafe for ContentSearchHit
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