pub struct IndexedColumn<'bump> {
pub col_name: Name<'bump>,
pub collation_name: Option<Name<'bump>>,
pub order: Option<SortOrder>,
}Expand description
Indexed column
Fields§
§col_name: Name<'bump>column name
collation_name: Option<Name<'bump>>COLLATE
order: Option<SortOrder>ORDER BY
Trait Implementations§
Source§impl<'bump> Debug for IndexedColumn<'bump>
impl<'bump> Debug for IndexedColumn<'bump>
impl<'bump> Eq for IndexedColumn<'bump>
Source§impl<'bump> PartialEq for IndexedColumn<'bump>
impl<'bump> PartialEq for IndexedColumn<'bump>
Source§fn eq(&self, other: &IndexedColumn<'bump>) -> bool
fn eq(&self, other: &IndexedColumn<'bump>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'bump> StructuralPartialEq for IndexedColumn<'bump>
Auto Trait Implementations§
impl<'bump> Freeze for IndexedColumn<'bump>
impl<'bump> RefUnwindSafe for IndexedColumn<'bump>
impl<'bump> Send for IndexedColumn<'bump>
impl<'bump> Sync for IndexedColumn<'bump>
impl<'bump> Unpin for IndexedColumn<'bump>
impl<'bump> UnsafeUnpin for IndexedColumn<'bump>
impl<'bump> UnwindSafe for IndexedColumn<'bump>
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.