pub struct IndexInfo {
pub unique: bool,
pub name: String,
pub parts: Vec<IndexPart>,
pub nullable: bool,
pub idx_type: IndexType,
pub comment: String,
pub functional: bool,
}Available on crate features
mysql and def only.Fieldsยง
ยงunique: boolDoes this index requires unique values
name: StringThe name of the index
parts: Vec<IndexPart>The parts composing this index
nullable: boolDoes this index allow null values
idx_type: IndexTypeBTree (the default), full-text etc
comment: StringUser comments
functional: boolTrue if part of the index is computed
Implementationsยง
Trait Implementationsยง
impl StructuralPartialEq for IndexInfo
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