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
Auto Trait Implementations§
impl Freeze for IndexesColumnType
impl RefUnwindSafe for IndexesColumnType
impl Send for IndexesColumnType
impl Sync for IndexesColumnType
impl Unpin for IndexesColumnType
impl UnsafeUnpin 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