pub enum IndexesColumnType {
String(Ident),
Expr(Literal),
}
Expand description
Represents the type of column for indexing.
Variants§
String(Ident)
Represents a column name with the given identifier.
Expr(Literal)
Represents an expression with the given literal expression.
Trait Implementations§
Source§impl Clone for IndexesColumnType
impl Clone for IndexesColumnType
Source§fn clone(&self) -> IndexesColumnType
fn clone(&self) -> IndexesColumnType
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 moreAuto Trait Implementations§
impl Freeze for IndexesColumnType
impl RefUnwindSafe for IndexesColumnType
impl Send for IndexesColumnType
impl Sync for IndexesColumnType
impl Unpin for IndexesColumnType
impl UnwindSafe for IndexesColumnType
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