pub struct IndexInfo {
pub index_name: String,
pub field_names: Vec<String>,
pub field_types: Vec<String>,
}
Expand description
Information about a single index including its name and field names.
Fields§
§index_name: String
§field_names: Vec<String>
§field_types: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexInfo
impl RefUnwindSafe for IndexInfo
impl Send for IndexInfo
impl Sync for IndexInfo
impl Unpin for IndexInfo
impl UnwindSafe for IndexInfo
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