pub struct SearchResult<'a> {
pub start: Position,
pub end: Position,
pub text: Cow<'a, str>,
pub context: Cow<'a, str>,
pub line: usize,
pub column: usize,
}Expand description
A single search result
Fields§
§start: PositionPosition where the match starts
end: PositionPosition where the match ends
text: Cow<'a, str>The matched text
context: Cow<'a, str>Context around the match (for display purposes)
line: usizeLine number where the match occurs (0-based)
column: usizeColumn where the match starts (0-based)
Trait Implementations§
Source§impl<'a> Clone for SearchResult<'a>
impl<'a> Clone for SearchResult<'a>
Source§fn clone(&self) -> SearchResult<'a>
fn clone(&self) -> SearchResult<'a>
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<'a> Debug for SearchResult<'a>
impl<'a> Debug for SearchResult<'a>
Source§impl<'a> PartialEq for SearchResult<'a>
impl<'a> PartialEq for SearchResult<'a>
impl<'a> Eq for SearchResult<'a>
impl<'a> StructuralPartialEq for SearchResult<'a>
Auto Trait Implementations§
impl<'a> Freeze for SearchResult<'a>
impl<'a> RefUnwindSafe for SearchResult<'a>
impl<'a> Send for SearchResult<'a>
impl<'a> Sync for SearchResult<'a>
impl<'a> Unpin for SearchResult<'a>
impl<'a> UnwindSafe for SearchResult<'a>
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