pub struct ListIndex {
pub is_vertex: bool,
pub label_name: String,
pub field_name: String,
}Expand description
ListIndex is the result of Graph::list_full_text_indexes.
Fields§
§is_vertex: boolWhether the index is built on a vertex.
label_name: StringThe label which the index is built on.
field_name: StringThe field which the index is built on.
Auto Trait Implementations§
impl Freeze for ListIndex
impl RefUnwindSafe for ListIndex
impl Send for ListIndex
impl Sync for ListIndex
impl Unpin for ListIndex
impl UnwindSafe for ListIndex
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