pub struct IndexPart {
pub column: String,
pub order: IndexOrder,
pub sub_part: Option<u32>,
}
Available on crate features
mysql
and def
only.Fieldsยง
ยงcolumn: String
Identifier for this column. If functional is true, may contain expression.
order: IndexOrder
Ascending, descending or unordered
sub_part: Option<u32>
If the whole column is indexed, this value is null. Otherwise the number indicates number of characters indexed
Trait Implementationsยง
impl StructuralPartialEq for IndexPart
Auto Trait Implementationsยง
impl Freeze for IndexPart
impl RefUnwindSafe for IndexPart
impl Send for IndexPart
impl Sync for IndexPart
impl Unpin for IndexPart
impl UnwindSafe for IndexPart
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