pub enum Field {
Title,
Author,
Abstract,
Keyword,
}Expand description
A HAL search field usable for fine-grained (field-scoped) searches.
These map to the Solr text fields exposed by HAL. Use
Field::name to get the raw field name, or pass a Field to
SearchQuery::in_field.
Variants§
Title
The document title (title_t).
Author
The author full names (authFullName_t).
Abstract
The abstract (abstract_t).
Keyword
The keywords (keyword_t).
Implementations§
Trait Implementations§
impl Copy for Field
impl Eq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations§
impl Freeze for Field
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnsafeUnpin for Field
impl UnwindSafe for Field
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