Struct IndexInfo
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,
}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§
§impl IndexInfo
impl IndexInfo
pub fn write(&self) -> IndexCreateStatement
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