pub struct IndexField {
pub name: String,
pub field_type: String,
pub searchable: Option<bool>,
pub filterable: Option<bool>,
pub sortable: Option<bool>,
pub facetable: Option<bool>,
pub key: Option<bool>,
pub retrievable: Option<bool>,
}
Fields§
§name: String
§field_type: String
§searchable: Option<bool>
§filterable: Option<bool>
§sortable: Option<bool>
§facetable: Option<bool>
§key: Option<bool>
§retrievable: Option<bool>
Trait Implementations§
Source§impl Debug for IndexField
impl Debug for IndexField
Auto Trait Implementations§
impl Freeze for IndexField
impl RefUnwindSafe for IndexField
impl Send for IndexField
impl Sync for IndexField
impl Unpin for IndexField
impl UnwindSafe for IndexField
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