pub enum IndexColExpr<'a> {
Column(Identifier<'a>),
Expression(Expression<'a>),
}Expand description
Column or expression specification for an index
Variants§
Column(Identifier<'a>)
Regular column name
Expression(Expression<'a>)
Functional index expression (wrapped in parentheses)
Trait Implementations§
Source§impl<'a> Clone for IndexColExpr<'a>
impl<'a> Clone for IndexColExpr<'a>
Source§fn clone(&self) -> IndexColExpr<'a>
fn clone(&self) -> IndexColExpr<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for IndexColExpr<'a>
impl<'a> Debug for IndexColExpr<'a>
Auto Trait Implementations§
impl<'a> Freeze for IndexColExpr<'a>
impl<'a> RefUnwindSafe for IndexColExpr<'a>
impl<'a> Send for IndexColExpr<'a>
impl<'a> Sync for IndexColExpr<'a>
impl<'a> Unpin for IndexColExpr<'a>
impl<'a> UnsafeUnpin for IndexColExpr<'a>
impl<'a> UnwindSafe for IndexColExpr<'a>
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