pub struct Query<'a> {
pub query: Option<&'a str>,
pub title: Option<&'a str>,
pub url: Option<&'a str>,
}Expand description
Fields§
§query: Option<&'a str>A string of words and quoted phrases that are matched against bookmark URLs and titles.
title: Option<&'a str>The title of the bookmark; matches verbatim.
url: Option<&'a str>The URL of the bookmark; matches verbatim. Note that folders have no URL.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Query<'a>
impl<'a> RefUnwindSafe for Query<'a>
impl<'a> Send for Query<'a>
impl<'a> Sync for Query<'a>
impl<'a> Unpin for Query<'a>
impl<'a> UnwindSafe for Query<'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