pub struct IndexDefinition {
pub id: IndexId,
pub label: LabelId,
pub property_key: PropertyKeyId,
pub index_type: IndexType,
}Expand description
Index definition.
Fields§
§id: IndexIdThe index ID.
label: LabelIdThe label this index applies to.
property_key: PropertyKeyIdThe property key being indexed.
index_type: IndexTypeThe type of index.
Trait Implementations§
Source§impl Clone for IndexDefinition
impl Clone for IndexDefinition
Source§fn clone(&self) -> IndexDefinition
fn clone(&self) -> IndexDefinition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IndexDefinition
impl RefUnwindSafe for IndexDefinition
impl Send for IndexDefinition
impl Sync for IndexDefinition
impl Unpin for IndexDefinition
impl UnwindSafe for IndexDefinition
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