pub struct NoteSearchResult {
pub name: String,
pub lines: Vec<(usize, String)>,
}Expand description
One note’s search result: its name and every line that matched a term.
Fields§
§name: String§lines: Vec<(usize, String)>Auto Trait Implementations§
impl Freeze for NoteSearchResult
impl RefUnwindSafe for NoteSearchResult
impl Send for NoteSearchResult
impl Sync for NoteSearchResult
impl Unpin for NoteSearchResult
impl UnsafeUnpin for NoteSearchResult
impl UnwindSafe for NoteSearchResult
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