pub enum SearchParts<'b> {
None,
Index(&'b [&'b str]),
}
Expand description
API parts for the Search API
Variants§
Implementations§
Trait Implementations§
Source§impl<'b> Clone for SearchParts<'b>
impl<'b> Clone for SearchParts<'b>
Source§fn clone(&self) -> SearchParts<'b>
fn clone(&self) -> SearchParts<'b>
Returns a copy 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<'b> Debug for SearchParts<'b>
impl<'b> Debug for SearchParts<'b>
Source§impl<'b> PartialEq for SearchParts<'b>
impl<'b> PartialEq for SearchParts<'b>
impl<'b> Eq for SearchParts<'b>
impl<'b> StructuralPartialEq for SearchParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for SearchParts<'b>
impl<'b> RefUnwindSafe for SearchParts<'b>
impl<'b> Send for SearchParts<'b>
impl<'b> Sync for SearchParts<'b>
impl<'b> Unpin for SearchParts<'b>
impl<'b> UnwindSafe for SearchParts<'b>
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