pub enum TermvectorsParts<'b> {
IndexId(&'b str, &'b str),
Index(&'b str),
IndexTypeId(&'b str, &'b str, &'b str),
IndexType(&'b str, &'b str),
}
Expand description
API parts for the Termvectors API
Variants§
IndexId(&'b str, &'b str)
Index and Id
Index(&'b str)
Index
IndexTypeId(&'b str, &'b str, &'b str)
Index, Type and Id
IndexType(&'b str, &'b str)
Index and Type
Implementations§
Trait Implementations§
Source§impl<'b> Clone for TermvectorsParts<'b>
impl<'b> Clone for TermvectorsParts<'b>
Source§fn clone(&self) -> TermvectorsParts<'b>
fn clone(&self) -> TermvectorsParts<'b>
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<'b> Debug for TermvectorsParts<'b>
impl<'b> Debug for TermvectorsParts<'b>
Source§impl<'b> PartialEq for TermvectorsParts<'b>
impl<'b> PartialEq for TermvectorsParts<'b>
impl<'b> StructuralPartialEq for TermvectorsParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for TermvectorsParts<'b>
impl<'b> RefUnwindSafe for TermvectorsParts<'b>
impl<'b> Send for TermvectorsParts<'b>
impl<'b> Sync for TermvectorsParts<'b>
impl<'b> Unpin for TermvectorsParts<'b>
impl<'b> UnwindSafe for TermvectorsParts<'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