pub struct IndexPath {
pub namespace: String,
pub collection: String,
pub index: String,
}Expand description
Which documents you want to search in, and which type of index should be used
Fields§
§namespace: StringThe namespace the collection belongs to
collection: StringThe collection you want to search in
index: StringThe search index you want to use for the collection
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexPath
impl RefUnwindSafe for IndexPath
impl Send for IndexPath
impl Sync for IndexPath
impl Unpin for IndexPath
impl UnwindSafe for IndexPath
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