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: bool
Does this index requires unique values
name: String
The name of the index
parts: Vec<IndexPart>
The parts composing this index
nullable: bool
Does this index allow null values
idx_type: IndexType
BTree (the default), full-text etc
comment: String
User comments
functional: bool
True 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