Struct IndexPart
pub struct IndexPart {
pub column: String,
pub order: IndexOrder,
pub sub_part: Option<u32>,
}Fields§
§column: StringIdentifier for this column. If functional is true, may contain expression.
order: IndexOrderAscending, 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